From: Andrew Dolgov Date: Wed, 15 Aug 2012 06:41:59 +0000 (+0400) Subject: fix batchSubscribe dialog not closing/feedlist not updating X-Git-Tag: 1.6.0~155 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4b298c869896ed1228b00a8365a8115e25bfd468;p=tt-rss.git fix batchSubscribe dialog not closing/feedlist not updating --- diff --git a/js/prefs.js b/js/prefs.js index d351a7bc..3ce453c4 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(); } }); } },