Dodaj nowe obrazy i szablony do modułu AP Page Builder

This commit is contained in:
2025-03-25 20:10:54 +01:00
parent 338ce2b7ce
commit 6a18bcfe20
557 changed files with 135520 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
/*
* @Website: apollotheme.com - prestashop template provider
* @author Apollotheme <apollotheme@gmail.com>
* @copyright 2007-2018 Apollotheme
* @description:
*/
$(document).ready(function() {
$('.leo_delete_position').each(function(){
$(this).closest('a').attr('href',"javascript:void(0);");
$('<input>', {
type: 'hidden',
id : 'leo_delete_position',
name: 'leo_delete_position',
value: '0'
}).appendTo( $(this).parent() );
$(this).closest('a').click(function(){
if (confirm(leo_confirm_text)){
$('#leo_delete_position').val('1');
$(this).closest('form').attr('action', leo_form_submit);
$(this).closest('form').submit();
}
});
});
});