remove console.logs
This commit is contained in:
parent
e60a223346
commit
2687398c89
@ -51,8 +51,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.$emit( 'svgpanzoom', svgpanzoom );
|
this.$emit( 'svgpanzoom', svgpanzoom );
|
||||||
|
|
||||||
console.log(svgpanzoom);
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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 );
|
||||||
|
Loading…
Reference in New Issue
Block a user