Removing the twisty function. This happens automatically now.

This commit is contained in:
hyatt%netscape.com 1999-08-25 11:03:48 +00:00
parent 066dc78d74
commit 31418bca1a

View File

@ -55,21 +55,3 @@ function showPage(event) {
deck.setAttribute("value", i-1);
}
// I copied this from commandglue.js. bad!
// -alecf
function ToggleTwisty(treeItem)
{
var openState = treeItem.getAttribute('open');
if(openState == 'true')
{
treeItem.removeAttribute('open');
}
else
{
treeItem.setAttribute('open', 'true');
}
}