X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/da80eb32dd2158bc959a15db82002e58628d8a32..53593baa211863fbf66540cf1bcc36c8fb37257f:/js/switchmenuframe.js 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; -}