Guest User

Untitled

a guest
Dec 12th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. W HTML:
  2.  
  3. <input type="hidden" id="photoToDelete" />
  4.  
  5.  
  6. Galleria.run('#gallery',{
  7. extend: function() {
  8. var gallery = this;
  9.  
  10. $('#remove_photo_link').click(function(){
  11. var current = gallery.getData(gallery.getIndex());
  12.  
  13. var confirmation = confirm("<?php echo __('DELETE_PHOTO_CONFIRMATION')?>");
  14. if (confirmation == true) {
  15. $('#photoToDelete').attr('name', 'wb_product[Photos]['+gallery.getIndex()+'][photo_delete]"');
  16. $('#photoToDelete').val('on');
  17.  
  18. $('.sf_admin_form form').submit()
  19. }
  20. })
  21. }
  22. });
Add Comment
Please, Sign In to add comment