Deltacms/core/module/theme/view/manage/manage.js.php

22 lines
451 B
PHP

/**
* This file is part of DeltaCMS.
*/
/**
* Confirmation de réinitialisation
*/
$("#configManageReset").on("click", function() {
var _this = $(this);
return core.confirm(textConfirm, function() {
$(location).attr("href", _this.attr("href"));
});
});
/**
* Confirmation de changement de thème
*/
$("#themeImportSubmit").on("click", function() {
return core.confirm(textConfirm2, function() {
$('#themeManageForm').submit();
});
});