fix some useless console.log

This commit is contained in:
JFH
2021-05-15 16:20:13 +02:00
parent d73e5cad5b
commit 9a68ba6358
13 changed files with 6 additions and 73 deletions

View File

@@ -123,8 +123,6 @@ export default {
function setIcon (pos, id) {
if (id.substr(0, 1) !== '\\') { id = '\\textmarker'; }
const ci = idPrefix + pos + '_' + id.substr(1);
console.log(ci);
console.log('cur_' + pos + '_marker_list');
svgEditor.setIcon('cur_' + pos + '_marker_list', $id(ci).children);
$id(ci).classList.add('current');
const siblings = Array.prototype.filter.call($id(ci).parentNode.children, function(child){
@@ -585,7 +583,6 @@ export default {
},
selectedChanged (opts) {
// Use this to update the current selected elements
// console.log('selectChanged',opts);
selElems = opts.elems;
const markerElems = [ 'line', 'path', 'polyline', 'polygon' ];