summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-15 10:41:59 +0400
committerAndrew Dolgov <[email protected]>2012-08-15 10:41:59 +0400
commit4b298c869896ed1228b00a8365a8115e25bfd468 (patch)
tree7c876b9bac7e26426cc8576927c17b1c2714dc6a /js/prefs.js
parent95ee44b33d4e6fec5651580dccc7e37b66daa5e8 (diff)
fix batchSubscribe dialog not closing/feedlist not updating
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/prefs.js b/js/prefs.js
index d351a7bc3..3ce453c47 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -2116,7 +2116,9 @@ function batchSubscribe() {
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(this.attr('value')),
onComplete: function(transport) {
- this.hide();
+ notify("");
+ updateFeedList();
+ dialog.hide();
} });
}
},