summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-10 06:52:11 +0100
committerAndrew Dolgov <[email protected]>2007-08-10 06:52:11 +0100
commit17a756d1932dd00f8ba6fc2eba63f01712669409 (patch)
tree35da90bba4e798856726c849d296572298b76ec0 /tt-rss.js
parent6af274f68dc65f6601b70302eb3f79a73a77ae88 (diff)
article_publish_url: syntax fix
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 1a4590522..cf68a0f50 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -27,6 +27,10 @@ function tagsAreDisplayed() {
function toggleTags(show_all) {
+ try {
+
+ debug("toggleTags: " + show_all + "; " + display_tags);
+
var p = document.getElementById("dispSwitchPrompt");
if (!show_all && !display_tags) {
@@ -43,6 +47,10 @@ function toggleTags(show_all) {
notify_progress("Loading, please wait...", true);
updateFeedList();
}
+
+ } catch (e) {
+ exception_error("toggleTags", e);
+ }
}
function dlg_frefresh_callback() {