2018-06-04 00:06:17 +08:00
|
|
|
(function (global, document) {
|
2018-06-24 10:01:21 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
(document);
|
2018-06-04 00:06:17 +08:00
|
|
|
|
|
|
|
// Opens the general settings window.
|
|
|
|
global.generalOpen = function() {
|
|
|
|
$(".view").hide();
|
|
|
|
$("#general-view").show();
|
|
|
|
};
|
|
|
|
|
|
|
|
global.generalSaveHandler = function() {
|
|
|
|
var data = global.dashboard.$data;
|
|
|
|
|
|
|
|
global.buttonDisable("#save-general-button");
|
|
|
|
global.domainUpdate(data.domains[data.cd], function() {
|
|
|
|
global.globalOKShow("Settings saved!");
|
|
|
|
global.buttonEnable("#save-general-button");
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-12-20 13:48:43 +08:00
|
|
|
} (window.commento, document));
|