Blame view
templates/html/common/wizefunc.js
1.62 KB
659c7d608 On regroupe les f... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
/* Go to top of page */ function topFunction() { document.body.scrollTop = 0; document.documentElement.scrollTop = 0; } /* open/close navigation optionally slide page */ function openNav(slide) { if (document.getElementById("mySidenav").getAttribute("class").split(' ')[1] == "menuClosed") { document.getElementById("mySidenav").style.width = "300px"; if (slide==1) { document.getElementById("main").style.marginLeft = "300px"; } document.getElementById("mySidenav").setAttribute("class","menu menuOpen"); /* Scroll to top when opening menu */ topFunction(); } else { document.getElementById("mySidenav").style.width = "0"; if (slide==1) { document.getElementById("main").style.marginLeft = "0"; } document.getElementById("mySidenav").setAttribute("class","menu menuClosed"); } } /* when scrolling down 20 pixel display upButton */ function scrollFunction() { if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { upButton.style.display = "block"; } else { upButton.style.display = "none"; } } /* Test if the logo is present (to avoid displaying broken link icon on chrome) */ function testLogo() { logo=document.getElementById("logoImgId"); logodiv=document.getElementById("logoDivId"); if (logo.naturalHeight == 0) { logodiv.setAttribute("style","display:none;"); } } |