From 442d77f1ccd670c0fde1db0038d3388e64f885e6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 14 May 2007 06:41:04 +0100 Subject: help uses popup window, recolor infoBox, use subscribe dialog in prefs --- tt-rss.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 6660a5d90..b46c859ac 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -476,8 +476,13 @@ function quickMenuGo(opid) { if (opid == "qmcRemoveFeed") { var actid = getActiveFeedId(); - - if (!actid || activeFeedIsCat()) { + + if (activeFeedIsCat()) { + alert("You can't unsubscribe from the category."); + return; + } + + if (!actid) { alert("Please select some feed first."); return; } @@ -640,7 +645,7 @@ function editFeedDlg(feed) { return; } - if (feed <= 0 || active_feed_is_cat || tagsAreDisplayed()) { + if (feed <= 0 || activeFeedIsCat() || tagsAreDisplayed()) { alert("You can't edit this kind of feed."); return; } -- cgit v1.2.3