From 31418bca1ae99181e5dee14ace555edc09e26c76 Mon Sep 17 00:00:00 2001 From: "hyatt%netscape.com" Date: Wed, 25 Aug 1999 11:03:48 +0000 Subject: [PATCH] Removing the twisty function. This happens automatically now. --- .../prefs/resources/content/AccountManager.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/mailnews/base/prefs/resources/content/AccountManager.js b/mailnews/base/prefs/resources/content/AccountManager.js index 5135f057d5b7..6790c16c4e59 100644 --- a/mailnews/base/prefs/resources/content/AccountManager.js +++ b/mailnews/base/prefs/resources/content/AccountManager.js @@ -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'); - } -} -