Deltacms/module/blog/view/config/config.js.php

12 lines
254 B
PHP
Raw Normal View History

2022-01-31 09:10:49 +01:00
/**
* This file is part of DeltaCMS.
*/
/**
* Confirmation de suppression
*/
$(".blogConfigDelete").on("click", function() {
var _this = $(this);
2022-09-02 08:44:18 +02:00
return core.confirm(textConfirm, function() {
2022-01-31 09:10:49 +01:00
$(location).attr("href", _this.attr("href"));
});
});