]> git.wh0rd.org - tt-rss.git/commitdiff
simplified pane handling code somewhat
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 3 Sep 2005 10:46:57 +0000 (11:46 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 3 Sep 2005 10:46:57 +0000 (11:46 +0100)
prefs.js

index e55f7d4f45d12f2995682fc5a4673d7cb9d1fe23..d698cd57e8c520248e856e1d7f74a90b28e6cbed 100644 (file)
--- 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() {