cleanup and replace all instances of 'var' with 'let'

This commit is contained in:
nobody 2024-04-28 08:10:21 +02:00
parent e04c723de5
commit 1cd95ef863
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
11 changed files with 11 additions and 11 deletions

View File

@ -19,7 +19,7 @@
* Help
*/
var help = {};
let help = {};
/**

View File

@ -19,7 +19,7 @@
* Logging Page
*/
var logging = {};
let logging = {};
logging._onDocumentLoaded = function () {
logging._getLoggingData()

View File

@ -19,7 +19,7 @@
* Options (Advanced)
*/
var optionsAdvanced = {};
let optionsAdvanced = {};
/**

View File

@ -19,7 +19,7 @@
* Options (Basic)
*/
var optionsBasic = {};
let optionsBasic = {};
/**

View File

@ -19,7 +19,7 @@
* Options (Info)
*/
var optionsInfo = {};
let optionsInfo = {};
/**

View File

@ -19,7 +19,7 @@
* Options (Other)
*/
var optionsOther = {};
let optionsOther = {};
/**

View File

@ -23,7 +23,7 @@
* Options
*/
var options = {};
let options = {};
/**

View File

@ -23,7 +23,7 @@
* Popup
*/
var popup = {};
let popup = {};
/**

View File

@ -19,7 +19,7 @@
* Statistic
*/
var statistics = {};
let statistics = {};
/**

View File

@ -20,7 +20,7 @@
* Updates
*/
var updates = {};
let updates = {};
/**

View File

@ -19,7 +19,7 @@
* Welcome
*/
var welcome = {};
let welcome = {};
/**