Skip to content

Instantly share code, notes, and snippets.

@acidChrist
Created August 29, 2012 11:15
Show Gist options
  • Save acidChrist/3510899 to your computer and use it in GitHub Desktop.
Save acidChrist/3510899 to your computer and use it in GitHub Desktop.
W HTML:
<input type="hidden" id="photoToDelete" />
Galleria.run('#gallery',{
extend: function() {
var gallery = this;
$('#remove_photo_link').click(function(){
var current = gallery.getData(gallery.getIndex());
var confirmation = confirm("<?php echo __('DELETE_PHOTO_CONFIRMATION')?>");
if (confirmation == true) {
$('#photoToDelete').attr('name', 'wb_product[Photos]['+gallery.getIndex()+'][photo_delete]"');
$('#photoToDelete').val('on');
$('.sf_admin_form form').submit()
}
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment