You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inav-configurator/js/globalVariablesStatus.js

33 lines
692 B
JavaScript

'use strict';
let GlobalVariablesStatus = function () {
let self = {},
data = [];
self.set = function (condition, value) {
data[condition] = value;
}
self.get = function (condition) {
if (typeof data[condition] !== 'undefined') {
return data[condition];
} else {
return null;
}
}
self.getAll = function() {
return data;
}
5 years ago
self.update = function ($container) {
for (let i in self.getAll()) {
if (self.getAll().hasOwnProperty(i)) {
$container.find("[data-gvar-index=" + i + "]").html(self.get(i));
}
}
}
return self;
};