- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
2.4 KiB
JavaScript
Executable File
61 lines
2.4 KiB
JavaScript
Executable File
jQuery(function($){
|
|
$("dt.changelog_title a").on('click', function(e){
|
|
e.preventDefault();
|
|
var $next = $(this).parent().next();
|
|
if ($next.hasClass('hiddend')) {
|
|
$next.removeClass('hiddend');
|
|
$(this).html('hide changelog');
|
|
} else {
|
|
$next.addClass('hiddend');
|
|
$(this).html('view changelog');
|
|
}
|
|
});
|
|
|
|
$("#asp_activate").on("click", function(){
|
|
if ( $("#asp_key").val() == "" ) return false;
|
|
const _this = this;
|
|
var data = {
|
|
"action": "asp_license_ajax",
|
|
"op": "activate",
|
|
"asp_license_request_nonce": $('#asp_license_request_nonce').val(),
|
|
"asp_key": $("#asp_key").val()
|
|
};
|
|
var $this = $(this);
|
|
$this.attr("disabled", "disabled");
|
|
$(this).parent().find(".small-loading").css("display", "inline-block");
|
|
$(this).parent().find("div.errorMsg").html("").css("display", "none");
|
|
var post = $.post(ajaxurl, data, function (response) {
|
|
if (response.status == 1) {
|
|
location.href = location.href;
|
|
return false;
|
|
}
|
|
$this.removeAttr("disabled");
|
|
$(_this).parent().find(".small-loading").css("display", "none");
|
|
$(_this).parent().find("div.errorMsg").html(response.message).css("display", "block");
|
|
}, "JSON");
|
|
});
|
|
$("#asp_deactivate").on("click", function(){
|
|
var c = confirm("Are you sure?");
|
|
if (!c) return false;
|
|
const _this = this;
|
|
var data = {
|
|
"action": "asp_license_ajax",
|
|
"op": "deactivate",
|
|
"asp_license_request_nonce": $('#asp_license_request_nonce').val(),
|
|
"asp_key": $("#asp_key").val()
|
|
};
|
|
var $this = $(this);
|
|
$this.attr("disabled", "disabled");
|
|
$(".asp_auto_update .small-loading").css("display", "inline-block");
|
|
$(".asp_auto_update div.errorMsg").html("").css("display", "none");
|
|
var post = $.post(ajaxurl, data, function (response) {
|
|
if (response.status == 1) {
|
|
location.href = location.href;
|
|
return false;
|
|
}
|
|
$this.removeAttr("disabled");
|
|
$(_this).parent().find(".small-loading").css("display", "none");
|
|
$(_this).parent().find("div.errorMsg").html(response.message).css("display", "block");
|
|
}, "JSON");
|
|
});
|
|
}); |