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 * Help
*/ */
var help = {}; let help = {};
/** /**

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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