add notify feedback on tab change

master
Andrew Dolgov 19 years ago
parent ff725e9bec
commit 7f74a9da6d

@ -62,7 +62,7 @@ function feedlist_callback() {
checkbox.checked = true; checkbox.checked = true;
} }
} }
// p_notify(""); notify("");
} catch (e) { } catch (e) {
exception_error("feedlist_callback", e); exception_error("feedlist_callback", e);
} }
@ -88,7 +88,7 @@ function filterlist_callback() {
checkbox.checked = true; checkbox.checked = true;
} }
} }
// p_notify(""); notify("");
} }
} }
@ -110,7 +110,7 @@ function labellist_callback() {
checkbox.checked = true; checkbox.checked = true;
} }
} }
// p_notify(""); notify("");
} }
} }
@ -118,7 +118,7 @@ function feed_browser_callback() {
var container = document.getElementById('prefContent'); var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) { if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText; container.innerHTML=xmlhttp.responseText;
// p_notify(""); notify("");
} }
} }
@ -140,8 +140,7 @@ function userlist_callback() {
checkbox.checked = true; checkbox.checked = true;
} }
} }
notify("");
// p_notify("");
} }
} }
@ -151,7 +150,7 @@ function prefslist_callback() {
container.innerHTML=xmlhttp.responseText; container.innerHTML=xmlhttp.responseText;
// p_notify(""); notify("");
} }
} }
@ -1297,6 +1296,8 @@ function selectTab(id, noupdate) {
if (!noupdate) { if (!noupdate) {
notify("Loading, please wait...", true);
if (id == "feedConfig") { if (id == "feedConfig") {
updateFeedList(); updateFeedList();
} else if (id == "filterConfig") { } else if (id == "filterConfig") {

Loading…
Cancel
Save