diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2007-08-10 06:52:11 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2007-08-10 06:52:11 +0100 |
| commit | 17a756d1932dd00f8ba6fc2eba63f01712669409 (patch) | |
| tree | 35da90bba4e798856726c849d296572298b76ec0 /tt-rss.js | |
| parent | 6af274f68dc65f6601b70302eb3f79a73a77ae88 (diff) | |
article_publish_url: syntax fix
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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() { |