summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-02-15 15:16:53 +0300
committerAndrew Dolgov <[email protected]>2010-02-15 15:16:53 +0300
commit78bcd2c44cef66adbd377943f2a45dd9d289a892 (patch)
treef722f02ad69a178a8b533757b3a51c80135b9853 /tt-rss.js
parent02b289d6611a535b8d498bfbbccd884164e02f24 (diff)
fix unsubscribeFeed behaving improperly in preferences
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 233de669a..85f335b28 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -626,27 +626,6 @@ function quickMenuGo(opid) {
}
}
-function unsubscribeFeed(feed_id, title) {
-
-
- var msg = __("Unsubscribe from %s?").replace("%s", title);
-
- if (title == undefined || confirm(msg)) {
- notify_progress("Removing feed...");
-
- var query = "?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id;
-
- new Ajax.Request("backend.php", {
- parameters: query,
- onComplete: function(transport) {
- dlg_frefresh_callback(transport, feed_id);
- } });
- }
-
- return false;
-}
-
-
function updateFeedTitle(t) {
active_title_text = t;
updateTitle();