|
|
@ -1,18 +1,16 @@
|
|
|
|
define(function() {
|
|
|
|
define(function() {
|
|
|
|
var Settings = {};
|
|
|
|
var Settings = {};
|
|
|
|
|
|
|
|
|
|
|
|
Settings.config = {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Settings.init = function() {
|
|
|
|
Settings.init = function() {
|
|
|
|
Settings.prepare();
|
|
|
|
Settings.prepare();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Settings.prepare = function() {
|
|
|
|
Settings.prepare = function() {
|
|
|
|
// Come back in 500ms if the config isn't ready yet
|
|
|
|
// Come back in 125ms if the config isn't ready yet
|
|
|
|
if (Settings.config === undefined) {
|
|
|
|
if (!app.config) {
|
|
|
|
setTimeout(function() {
|
|
|
|
setTimeout(function() {
|
|
|
|
Settings.prepare();
|
|
|
|
Settings.prepare();
|
|
|
|
}, 500);
|
|
|
|
}, 125);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -25,21 +23,21 @@ define(function() {
|
|
|
|
key = fields[x].getAttribute('data-field');
|
|
|
|
key = fields[x].getAttribute('data-field');
|
|
|
|
inputType = fields[x].getAttribute('type');
|
|
|
|
inputType = fields[x].getAttribute('type');
|
|
|
|
if (fields[x].nodeName === 'INPUT') {
|
|
|
|
if (fields[x].nodeName === 'INPUT') {
|
|
|
|
if (Settings.config[key]) {
|
|
|
|
if (app.config[key]) {
|
|
|
|
switch (inputType) {
|
|
|
|
switch (inputType) {
|
|
|
|
case 'text':
|
|
|
|
case 'text':
|
|
|
|
case 'textarea':
|
|
|
|
case 'textarea':
|
|
|
|
case 'number':
|
|
|
|
case 'number':
|
|
|
|
fields[x].value = Settings.config[key];
|
|
|
|
fields[x].value = app.config[key];
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'checkbox':
|
|
|
|
case 'checkbox':
|
|
|
|
fields[x].checked = Settings.config[key] === '1' ? true : false;
|
|
|
|
fields[x].checked = app.config[key] === '1' ? true : false;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (fields[x].nodeName === 'TEXTAREA') {
|
|
|
|
} else if (fields[x].nodeName === 'TEXTAREA') {
|
|
|
|
if (Settings.config[key]) fields[x].value = Settings.config[key];
|
|
|
|
if (app.config[key]) fields[x].value = app.config[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|