mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 13:33:38 +02:00
supress some messages and errors
This commit is contained in:
parent
6ed972257f
commit
96d6cb12ac
1 changed files with 4 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue