summaryrefslogtreecommitdiff
path: root/js/viewfeed.js
diff options
context:
space:
mode:
authorfox <[email protected]>2018-03-11 08:38:55 +0000
committerGogs <[email protected]>2018-03-11 08:38:55 +0000
commitf60ca3a3498affe7b07e8f443540784984d0e0b0 (patch)
tree6207b74b5c2273c28f497ea04f13bd93b82e0752 /js/viewfeed.js
parente2e23887fb0756d86165cb5c602f5e68292da3af (diff)
parenta30f862de452c05ef2c89361675449e93071b951 (diff)
Merge branch 'js-strict-mode' of wn/tt-rss into js-strict-mode
Diffstat (limited to 'js/viewfeed.js')
-rwxr-xr-xjs/viewfeed.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 925d71379..0c15a23b9 100755
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1024,7 +1024,7 @@ function editArticleTags(id) {
if (dijit.byId("editTagsDlg"))
dijit.byId("editTagsDlg").destroyRecursive();
- dialog = new dijit.Dialog({
+ var dialog = new dijit.Dialog({
id: "editTagsDlg",
title: __("Edit article Tags"),
style: "width: 600px",
@@ -1259,7 +1259,7 @@ function catchupBatchedArticles() {
_catchup_request_sent = false;
- reply = JSON.parse(transport.responseText);
+ var reply = JSON.parse(transport.responseText);
var batch = reply.ids;
batch.each(function (id) {