(merge) window.onload nicht direkt setzen
[kivitendo-erp.git] / js / switchmenuframe.js
index 0399a2e..055a7d9 100644 (file)
@@ -1,20 +1,15 @@
-/* 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;
+var Frame;
+var FrameSize;
 
-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;
+function Switch_Menu() {
+  if (Frame) {
+    Frame.attr('cols',vSwitch_Menu ? '30,*' : FrameSize);
+    vSwitch_Menu=!vSwitch_Menu;
+  }
 }
+
+$(function(){
+  Frame = $(parent.document.getElementById('menuframe'));
+  FrameSize = Frame.attr('cols');
+})