summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-03 11:46:57 +0100
committerAndrew Dolgov <[email protected]>2005-09-03 11:46:57 +0100
commit0f4102532706031f546cd0d2aba6720b1b2386ef (patch)
tree9d2157d47bbdf97a6c28d0d3b72fc6b28ae21913 /prefs.js
parentbdc00fe04d95d86e9514f4694ce2f9683b83db7f (diff)
simplified pane handling code somewhat
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/prefs.js b/prefs.js
index e55f7d4f4..d698cd57e 100644
--- a/prefs.js
+++ b/prefs.js
@@ -7,7 +7,6 @@ var xmlhttp = false;
var active_feed = false;
var active_filter = false;
-var active_pane = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
@@ -497,12 +496,6 @@ function expandPane(id) {
var container;
-/* if (active_pane) {
- container = document.getElementById(active_pane);
- container.innerHTML = "<a href=\"javascript:expandPane('" +
- active_pane + "')\">Click to expand...</a>";
- } */
-
container = document.getElementById(id);
if (id == "feedConfPane") {
@@ -510,8 +503,6 @@ function expandPane(id) {
} else if (id == "filterConfPane") {
updateFilterList();
}
-
- active_pane = id;
}
function init() {