1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:25:55 +00:00

strict js: fix more dialog vars

This commit is contained in:
wn_
2018-03-10 07:11:33 -06:00
parent e2e23887fb
commit ad04bbf81d
4 changed files with 14 additions and 14 deletions

View File

@@ -301,7 +301,7 @@ function getURLParam(param){
}
function closeInfoBox() {
dialog = dijit.byId("infoBox");
var dialog = dijit.byId("infoBox");
if (dialog) dialog.hide();
@@ -939,7 +939,7 @@ function quickAddFilter() {
if (dijit.byId("filterEditDlg"))
dijit.byId("filterEditDlg").destroyRecursive();
dialog = new dijit.Dialog({
var dialog = new dijit.Dialog({
id: "filterEditDlg",
title: __("Create Filter"),
style: "width: 600px",
@@ -1257,7 +1257,7 @@ function editFeed(feed) {
if (dijit.byId("feedEditDlg"))
dijit.byId("feedEditDlg").destroyRecursive();
dialog = new dijit.Dialog({
var dialog = new dijit.Dialog({
id: "feedEditDlg",
title: __("Edit Feed"),
style: "width: 600px",
@@ -1432,7 +1432,7 @@ function showFeedsWithErrors() {
if (dijit.byId("errorFeedsDlg"))
dijit.byId("errorFeedsDlg").destroyRecursive();
dialog = new dijit.Dialog({
var dialog = new dijit.Dialog({
id: "errorFeedsDlg",
title: __("Feeds with update errors"),
style: "width: 600px",