9e3935b3b2
Apologies in advance for the insanely huge commit. This commit is primarily based on Anton Linevych's amazing work found here [1]. While he had gone through the pains of making small, atomic changes to each file, I had put off reviewing the PR for a long time. By the time I finally got around to it, the project had changed so much that it didn't make sense to keep the commits the same way. So I've cherry-picked most of his commits, with some changes here and there, and I've squashed them into one commit. [1] https://gitlab.com/linevych/commento-ce/tree/feature/frontend_building_improvements
44 lines
987 B
JavaScript
44 lines
987 B
JavaScript
(function (global, document) {
|
|
"use strict";
|
|
|
|
// Opens the danger zone.
|
|
global.dangerOpen = function() {
|
|
$(".view").hide();
|
|
$("#danger-view").show();
|
|
};
|
|
|
|
|
|
// Deletes a domain.
|
|
global.domainDeleteHandler = function() {
|
|
var data = global.dashboard.$data;
|
|
|
|
global.domainDelete(data.domains[data.cd].domain, function(success) {
|
|
if (success) {
|
|
document.location = global.origin + "/dashboard";
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
// Freezes a domain.
|
|
global.domainFreezeHandler = function() {
|
|
var data = global.dashboard.$data;
|
|
|
|
data.domains[data.cd].state = "frozen"
|
|
global.domainUpdate(data.domains[data.cd])
|
|
document.location.hash = "#modal-close";
|
|
}
|
|
|
|
|
|
// Unfreezes a domain.
|
|
global.domainUnfreezeHandler = function() {
|
|
var data = global.dashboard.$data;
|
|
|
|
data.domains[data.cd].state = "unfrozen"
|
|
global.domainUpdate(data.domains[data.cd])
|
|
document.location.hash = "#modal-close";
|
|
}
|
|
|
|
|
|
} (window.commento, document));
|