summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-19 04:22:59 +0100
committerAndrew Dolgov <[email protected]>2006-05-19 04:22:59 +0100
commit7f74a9da6d22bcb385ec90c90be69bca8ebc0c9a (patch)
treee6575665dc264cfd0a17a344221378b5513646a7 /prefs.js
parentff725e9bec37f92b1dc5d510245d53b97404b6f7 (diff)
add notify feedback on tab change
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/prefs.js b/prefs.js
index 85c707e61..04c5266b6 100644
--- a/prefs.js
+++ b/prefs.js
@@ -62,7 +62,7 @@ function feedlist_callback() {
checkbox.checked = true;
}
}
-// p_notify("");
+ notify("");
} catch (e) {
exception_error("feedlist_callback", e);
}
@@ -88,7 +88,7 @@ function filterlist_callback() {
checkbox.checked = true;
}
}
-// p_notify("");
+ notify("");
}
}
@@ -110,7 +110,7 @@ function labellist_callback() {
checkbox.checked = true;
}
}
-// p_notify("");
+ notify("");
}
}
@@ -118,7 +118,7 @@ function feed_browser_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
-// p_notify("");
+ notify("");
}
}
@@ -140,8 +140,7 @@ function userlist_callback() {
checkbox.checked = true;
}
}
-
-// p_notify("");
+ notify("");
}
}
@@ -150,8 +149,8 @@ function prefslist_callback() {
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
-
-// p_notify("");
+
+ notify("");
}
}
@@ -1297,6 +1296,8 @@ function selectTab(id, noupdate) {
if (!noupdate) {
+ notify("Loading, please wait...", true);
+
if (id == "feedConfig") {
updateFeedList();
} else if (id == "filterConfig") {