slight update

git-svn-id: file:///svn/phpbb/trunk@7217 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Dominik Dröscher 2007-03-22 16:07:15 +00:00
parent 3ff475bcbb
commit ad540a705f

View file

@ -131,6 +131,7 @@ function switch_menu()
menu_state = 'hidden';
toggle.style.left = '0';
toggle.style.width = '20px';
handle.style.backgroundImage = 'url(images/toggle_inverse.gif)';
break;
//show
case 'hidden':
@ -138,7 +139,8 @@ function switch_menu()
menu.style.display = 'block';
menu_state = 'shown';
toggle.style.left = '15%';
toggle.style.width = '5%'
toggle.style.width = '5%';
handle.style.backgroundImage = 'url(images/toggle.gif)';
break;
}
}