mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-20 03:16:12 +00:00
Fix implicit global declarations
This commit is contained in:
parent
97645093c3
commit
392a9daee3
@ -396,7 +396,7 @@
|
||||
|
||||
var counter = 1; // used for row count
|
||||
|
||||
for (index = 0; index < data["d3"]["data"].length; ++index) {
|
||||
for (let index = 0; index < data["d3"]["data"].length; ++index) {
|
||||
rowcounter = 0;
|
||||
min = 0;
|
||||
max = 0;
|
||||
|
||||
@ -58,9 +58,9 @@ $( document ).ready(function() {
|
||||
// avoid running code twice due to <script> location within <body>
|
||||
|
||||
if (typeof monitPollInit === 'undefined') {
|
||||
monitPollInit = false;
|
||||
let monitPollInit = false;
|
||||
} else {
|
||||
monitPollInit = true;
|
||||
let monitPollInit = true;
|
||||
}
|
||||
|
||||
function monitStatusPoll() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user