Mercurial > hg > digilib
view xul/content/tree_nav.js @ 337:75efda795d7f
Servlet version 1.5.4b
- filenames with dots (brr...) work when given without extension
author | robcast |
---|---|
date | Wed, 17 Nov 2004 19:30:34 +0100 |
parents | 49cb8a445126 |
children |
line wrap: on
line source
function open_link() { var t=document.getElementById("menu_tree"); //baum in variable t holen var l=t.view.getItemAtIndex(t.currentIndex); //aus baum treeitem herausholen mit dem selected index (currentIndex) var d=l.firstChild.firstChild.getAttribute("link"); //aus treeitem treecell (mit firstChild.firstChild) und dann dort wert von id herausholen (mit getAttribute) if (d!=""){ //alert(d); window.content.location.href="http://pythia2.unibe.ch:8080/docuserver/digitallibrary/digilib.jsp?lv=1&fn="+d; } }