Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision f28c12f1

Von Sven Donath vor etwa 14 Jahren hinzugefügt

  • ID f28c12f11051077c53455e3801ba89dc860768be
  • Vorgänger 08b6539d
  • Nachfolger 547b4816

Seitliches HTML-Menü lässt sich ein- und ausklappen. (update)
Sorry, Datei an falscher Stelle gewesen.

Unterschiede anzeigen:

bin/mozilla/switchmenuframe.js
1
/* This is used in bin/mozilla/kopf.pl to switch the HTML sidemenu on/off
2
   2010, Sven Donath, lxo@dexo.de  */
3

  
4
var vSwitch_Menu = 1;
5

  
6
function Switch_Menu(framesize)
7
{
8
	if (vSwitch_Menu)
9
	{
10
		vSwitch_Menu=false;
11
                parent.document.getElementById('menuframe').setAttribute('cols','30,*')
12
	}
13
	else
14
	{
15
		vSwitch_Menu=true;
16
				framesize = framesize + ',*';
17
                parent.document.getElementById('menuframe').setAttribute('cols',framesize);
18
    }
19
	return;
20
}
js/switchmenuframe.js
1
/* This is used in bin/mozilla/kopf.pl to switch the HTML sidemenu on/off
2
   2010, Sven Donath, lxo@dexo.de  */
3

  
4
var vSwitch_Menu = 1;
5

  
6
function Switch_Menu(framesize)
7
{
8
	if (vSwitch_Menu)
9
	{
10
		vSwitch_Menu=false;
11
                parent.document.getElementById('menuframe').setAttribute('cols','30,*')
12
	}
13
	else
14
	{
15
		vSwitch_Menu=true;
16
				framesize = framesize + ',*';
17
                parent.document.getElementById('menuframe').setAttribute('cols',framesize);
18
    }
19
	return;
20
}

Auch abrufbar als: Unified diff