summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-03-14 19:45:10 +0300
committerAndrew Dolgov <[email protected]>2018-03-14 19:45:10 +0300
commit7560e54e3925831f7a7347e0b53ed695c69ef7aa (patch)
tree5661d2fcec135abfbc972f52b7d3d4ac96ec3fc2 /js/tt-rss.js
parent0a8cdd4b9c320e4dcc74507b672b1fd10b59b677 (diff)
switchPanelMode: strict-mode fix for article_id
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 42558d4fa..c0e5af31d 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -1017,7 +1017,7 @@ function handle_rpc_json(transport, scheduled_call) {
function switchPanelMode(wide) {
if (isCdmMode()) return;
- article_id = getActiveArticleId();
+ var article_id = getActiveArticleId();
if (wide) {
dijit.byId("headlines-wrap-inner").attr("design", 'sidebar');