fix batchSubscribe dialog not closing/feedlist not updating

This commit is contained in:
Andrew Dolgov 2012-08-15 10:41:59 +04:00
parent 95ee44b33d
commit 4b298c8698
1 changed files with 3 additions and 1 deletions

View File

@ -2116,7 +2116,9 @@ function batchSubscribe() {
new Ajax.Request("backend.php", { new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(this.attr('value')), parameters: dojo.objectToQuery(this.attr('value')),
onComplete: function(transport) { onComplete: function(transport) {
this.hide(); notify("");
updateFeedList();
dialog.hide();
} }); } });
} }
}, },