summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-11 09:06:18 +0100
committerAndrew Dolgov <[email protected]>2005-12-11 09:06:18 +0100
commitf0e81ffe8fba0485aaa2b8b303aef27cf7697345 (patch)
tree70652d1b48ebe49bd5a44a7c5b03f6a038aacfed /prefs.js
parent696684653d0f69c9570f32cb910237f6b8b1bde7 (diff)
add feedback to some prefs editors
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/prefs.js b/prefs.js
index 6def039da..d64e86aaf 100644
--- a/prefs.js
+++ b/prefs.js
@@ -693,7 +693,7 @@ function feedEditSave() {
active_feed = false;
- notify("");
+ notify("Saving feed...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
@@ -711,7 +711,7 @@ function feedCatEditSave() {
return
}
- notify("");
+ notify("Saving category...");
var cat_title = document.getElementById("iedit_title").value;
@@ -824,7 +824,7 @@ function labelEditSave() {
return;
}
- notify("");
+ notify("Saving label...");
active_label = false;
@@ -861,7 +861,7 @@ function userEditSave() {
active_user = false;
- notify("");
+ notify("Saving user...");
xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
user + "&l=" + param_escape(login) + "&al=" + param_escape(level),
@@ -908,7 +908,7 @@ function filterEditSave() {
"&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id) +
"&aid=" + param_escape(action_id), true);
- notify("");
+ notify("Saving filter...");
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);