summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-05-16 10:41:20 +0300
committerAndrew Dolgov <[email protected]>2017-05-16 10:41:20 +0300
commit5b6ea1ef914d0d33516ce59df69637576055ce66 (patch)
tree5700f1a5e72789120578389e744221cc328743eb /js
parent7590f03961012ac946297fc96be9ef2bb4ad3c20 (diff)
remove pubsubhubbub: dead
Diffstat (limited to 'js')
-rwxr-xr-xjs/functions.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/js/functions.js b/js/functions.js
index b33c23dc1..934f69e96 100755
--- a/js/functions.js
+++ b/js/functions.js
@@ -1123,27 +1123,6 @@ function quickAddFilter() {
}
-function resetPubSub(feed_id, title) {
-
- var msg = __("Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update.").replace("%s", title);
-
- if (title == undefined || confirm(msg)) {
- notify_progress("Loading, please wait...");
-
- var query = "?op=pref-feeds&quiet=1&method=resetPubSub&ids=" + feed_id;
-
- new Ajax.Request("backend.php", {
- parameters: query,
- onComplete: function(transport) {
- dijit.byId("pubsubReset_Btn").attr('disabled', true);
- notify_info("Subscription reset.");
- } });
- }
-
- return false;
-}
-
-
function unsubscribeFeed(feed_id, title) {
var msg = __("Unsubscribe from %s?").replace("%s", title);