summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-04 06:44:47 +0100
committerAndrew Dolgov <[email protected]>2006-10-04 06:44:47 +0100
commit81780e8f4f8667c71f2c8bfca3c6a024bb51a849 (patch)
treea99eef0a05d75c0f155c72696ccb68f4913e1570 /prefs.js
parent9c4837460c168b248e7f4a45d5b020e878bc3f91 (diff)
preselect active feed cat on edit
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/prefs.js b/prefs.js
index d9c10d692..e2cdd1126 100644
--- a/prefs.js
+++ b/prefs.js
@@ -31,20 +31,6 @@ function feedlist_callback() {
var container = document.getElementById('prefContent');
container.innerHTML=xmlhttp.responseText;
selectTab("feedConfig", true);
-
- if (active_feed_cat) {
- var row = document.getElementById("FCATR-" + active_feed_cat);
- if (row) {
- if (!row.className.match("Selected")) {
- row.className = row.className + "Selected";
- }
- }
- var checkbox = document.getElementById("FCCHK-" + active_feed_cat);
- if (checkbox) {
- checkbox.checked = true;
- }
- }
-
notify("");
} catch (e) {
exception_error("feedlist_callback", e);