svghmi/svghmi.js
branchsvghmi
changeset 3125 1fb0c07bd97b
parent 3118 e704b0487515
child 3126 f45e413a0f40
--- a/svghmi/svghmi.js	Tue Feb 02 16:39:02 2021 +0100
+++ b/svghmi/svghmi.js	Thu Feb 04 21:20:01 2021 +0100
@@ -465,17 +465,3 @@
     current_modal = undefined;
 };
 
-function widget_active_activable(eltsub) {
-    if(eltsub.inactive_style === undefined)
-        eltsub.inactive_style = eltsub.inactive.getAttribute("style");
-    eltsub.inactive.setAttribute("style", "display:none");
-    if(eltsub.active_style !== undefined)
-            eltsub.active.setAttribute("style", eltsub.active_style);
-};
-function widget_inactive_activable(eltsub) {
-    if(eltsub.active_style === undefined)
-        eltsub.active_style = eltsub.active.getAttribute("style");
-    eltsub.active.setAttribute("style", "display:none");
-    if(eltsub.inactive_style !== undefined)
-            eltsub.inactive.setAttribute("style", eltsub.inactive_style);
-};