supress some messages and errors

This commit is contained in:
James B. Pollack 2016-06-16 12:27:03 -07:00
parent 6ed972257f
commit 96d6cb12ac

View file

@ -671,7 +671,6 @@
} else {
for (var i = 0; i < elShapeSections.length; i++) {
console.log("Hiding shape section " + elShapeSections[i])
elShapeSections[i].style.display = 'none';
}
}
@ -805,8 +804,10 @@
}
var activeElement = document.activeElement;
activeElement.select();
if(typeof activeElement.select!=="undefined"){
activeElement.select();
}
}
}
});