remove console.logs

zoom
Yanick Champoux 2018-03-24 17:56:27 -04:00
parent e60a223346
commit 2687398c89
2 changed files with 0 additions and 6 deletions

View File

@ -51,8 +51,6 @@ export default {
} }
this.$emit( 'svgpanzoom', svgpanzoom ); this.$emit( 'svgpanzoom', svgpanzoom );
console.log(svgpanzoom);
}, },
}; };

View File

@ -49,16 +49,12 @@ export const SvgPanZoom = {
let options = {}; let options = {};
Object.keys(props).filter( k => this[k] !== undefined ).forEach( k => options[k] = this[k] ); Object.keys(props).filter( k => this[k] !== undefined ).forEach( k => options[k] = this[k] );
console.log(options);
if( this.has_thumbnail ) { if( this.has_thumbnail ) {
console.log( this.$slots.default[0].elm.id );
console.log( this.$slots.thumbnail );
let svgpanzoom = thumbnailViewer({ let svgpanzoom = thumbnailViewer({
mainViewId: this.$slots.default[0].elm.id, mainViewId: this.$slots.default[0].elm.id,
thumbViewId: 'thumbView', thumbViewId: 'thumbView',
}); });
console.log(svgpanzoom);
} }
else { else {
let svgpanzoom = svg_pan_zoom( this.$slots.default[0].elm , options ); let svgpanzoom = svg_pan_zoom( this.$slots.default[0].elm , options );