X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/97c8f14b3fea88e6b482919d944cb8e6461bc451..53593baa211863fbf66540cf1bcc36c8fb37257f:/js/switchmenuframe.js?ds=inline diff --git a/js/switchmenuframe.js b/js/switchmenuframe.js deleted file mode 100644 index d0bf2ac2d..000000000 --- a/js/switchmenuframe.js +++ /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; -}