]> wagnertech.de Git - kivitendo-erp.git/blobdiff - js/switchmenuframe.js
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / js / switchmenuframe.js
diff --git a/js/switchmenuframe.js b/js/switchmenuframe.js
deleted file mode 100644 (file)
index d0bf2ac..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* This is used in bin/mozilla/kopf.pl to switch the HTML side menu on/off
-   2010, Sven Donath, lxo@dexo.de  */
-
-var vSwitch_Menu = 1;
-var FrameSize = (parent.document.getElementById('menuframe').cols);
-
-function Switch_Menu()
-{
-    if (vSwitch_Menu)
-    {
-        vSwitch_Menu=false;
-                parent.document.getElementById('menuframe').setAttribute('cols','30,*');
-    }
-    else
-    {
-        vSwitch_Menu=true;
-                parent.document.getElementById('menuframe').setAttribute('cols',FrameSize);
-    }
-    return;
-}