summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-29 04:11:48 +0100
committerAndrew Dolgov <[email protected]>2006-03-29 04:11:48 +0100
commit01b3e1919a5c99d21c0db8c13f1883320940c147 (patch)
tree5de4be740ff1b5c10c99a13ccd84f48b2f273002 /tt-rss.js
parent9d87df8f60f2c049de57faae1c827d457be1e7ea (diff)
split backend rpc, various interface improvements
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 7958291f9..4c02a515f 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -653,30 +653,6 @@ function qfdDelete(feed_id) {
}
-function allFeedsMenuChange() {
- var chooser = document.getElementById("allFeedsChooser");
-
- var opname = chooser[chooser.selectedIndex].text;
-
- chooser.selectedIndex = 0;
-
- if (opname == "Update") {
- scheduleFeedUpdate(true);
- return;
- }
-
- if (opname == "Mark as read") {
- catchupAllFeeds();
- return;
- }
-
- if (opname == "Show only unread") {
- toggleDispRead();
- return;
- }
-
-}
-
function updateFeedTitle(t) {
active_title_text = t;
updateTitle();