Před pár lety jsem sesmolil cz překlad jedné nápovědy kompilované do souboru *.chm
Na každé (x)html stránce mám nahoře:
<script type="text/javascript" src="../styl/nsh.js"></script>
a úplně dole kód:
...
</div></div>
<script type="text/javascript">
<!--
var lastSlashPos = document.URL.lastIndexOf("/") >
document.URL.lastIndexOf("\\") ? document.URL.lastIndexOf("/") :
document.URL.lastIndexOf("\\");
if( document.URL.substring( lastSlashPos + 1, lastSlashPos + 4
).toLowerCase() != "~hh" )
{
nsrInit();
}
-->
</script>
</body>
</html>
Moc netuším (Javu ani trošku neovládám) k čemu tento kód slouží.
Aktuálně zmíněnou nápovědu aktualizuji a předělávám i její "layout",...
Moc by se mi hodilo trošku podrobněji vědět k čemu uvedený kód slouží.
Děkuji
Ještě přikládám obsah souboru ../styl/nsh.js
function doResize() {
var clheight, headheight;
if (self.innerHeight) // all except Explorer
{ clheight = self.innerHeight; }
else if (document.documentElement && document.documentElement.clientHeight) // Explorer 6 Strict Mode
{ clheight = document.documentElement.clientHeight; }
else if (document.body) // other Explorers
{ clheight = document.body.clientHeight; }
headheight = document.getElementById('idheader').clientHeight;
if (clheight < headheight ) {clheight = headheight + 1;}
document.getElementById('idcontent').style.height = clheight - document.getElementById('idheader').clientHeight +'px';
}
function nsrInit() {
contentbody = document.getElementById('idcontent');
if (contentbody) {
contentbody.className = 'nonscroll';
document.getElementsByTagName('body')[0].className = 'nonscroll';
document.getElementsByTagName('html')[0].className = 'nonscroll';
window.onresize = doResize;
doResize();
}
}
PS
Kód původních html stránek (nápovědy) byl generován programem Help&Manual a tuším že JS sloužil (slouží) k vytvoření statického pruhu s navigací na začátku každé stránky...
Zkuste mi prosím "někdo" říci více.