slitaz-configs view rootfs/usr/share/webhome/app/lib/app.js @ rev 319

~/.Xdefaults: add xterm utf same as in /root, ~/.xinitrc: LOG=/dev/tty9, ob-menu/menu.xml.in : xcompmgr -a : Use automatic server-side compositing. Faster, but no special effects.
author anonymous
date Sat Nov 07 19:56:54 2020 +0000 (2020-11-07)
parents 29b1d93039e2
children
line source
1 // SliTaz GNU/Linux : Start Page
3 // Open | Close Object
4 function openclose(obj){
5 var btn = document.getElementById(obj);
6 if(btn.style.display != "block"){
7 btn.style.display = "block";
8 }else{
9 btn.style.display = "none";
10 }
11 }