]> 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 0399a2e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* This is used in bin/mozilla/kopf.pl to switch the HTML sidemenu on/off
-   2010, Sven Donath, lxo@dexo.de  */
-
-var vSwitch_Menu = 1;
-
-function Switch_Menu(framesize)
-{
-       if (vSwitch_Menu)
-       {
-               vSwitch_Menu=false;
-                parent.document.getElementById('menuframe').setAttribute('cols','30,*')
-       }
-       else
-       {
-               vSwitch_Menu=true;
-                               framesize = framesize + ',*';
-                parent.document.getElementById('menuframe').setAttribute('cols',framesize);
-    }
-       return;
-}