From 96d6cb12ac9ddaf43151577e77cee3a501efef35 Mon Sep 17 00:00:00 2001 From: "James B. Pollack" Date: Thu, 16 Jun 2016 12:27:03 -0700 Subject: [PATCH] supress some messages and errors --- scripts/system/html/entityProperties.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/system/html/entityProperties.html b/scripts/system/html/entityProperties.html index c8edbdb369..82387cafa5 100644 --- a/scripts/system/html/entityProperties.html +++ b/scripts/system/html/entityProperties.html @@ -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(); + } } } });