From 2687398c89e4079bb96eb920b57471c8791be826 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sat, 24 Mar 2018 17:56:27 -0400 Subject: [PATCH] remove console.logs --- src/SvgPanZoom.vue | 2 -- src/index.vue | 4 ---- 2 files changed, 6 deletions(-) diff --git a/src/SvgPanZoom.vue b/src/SvgPanZoom.vue index 1b1ce92..d359554 100644 --- a/src/SvgPanZoom.vue +++ b/src/SvgPanZoom.vue @@ -51,8 +51,6 @@ export default { } this.$emit( 'svgpanzoom', svgpanzoom ); - - console.log(svgpanzoom); }, }; diff --git a/src/index.vue b/src/index.vue index a759dd7..c3fda34 100644 --- a/src/index.vue +++ b/src/index.vue @@ -49,16 +49,12 @@ export const SvgPanZoom = { let options = {}; Object.keys(props).filter( k => this[k] !== undefined ).forEach( k => options[k] = this[k] ); - console.log(options); if( this.has_thumbnail ) { - console.log( this.$slots.default[0].elm.id ); - console.log( this.$slots.thumbnail ); let svgpanzoom = thumbnailViewer({ mainViewId: this.$slots.default[0].elm.id, thumbViewId: 'thumbView', }); - console.log(svgpanzoom); } else { let svgpanzoom = svg_pan_zoom( this.$slots.default[0].elm , options );