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

13 lines
249 B
PHP
Raw Normal View History

/**
* This file is part of DeltaCMS.
*/
/**
* Confirmation de suppression
*/
$(".fontDelete").on("click", function() {
var _this = $(this);
2022-09-11 09:42:42 +02:00
return core.confirm(textConfirm, function() {
$(location).attr("href", _this.attr("href"));
});
});