EstudioJuridicoAlmagro_Web/www/wpv_common/admin/assets/js/gallery-edit-image.js

15 lines
341 B
JavaScript
Raw Normal View History

jQuery(function($) {
$('form').submit(function() {
$.ajax({
type: "POST",
data: $(this).serializeArray(),
success: function(msg){
var win = window.dialogArguments || opener || parent || top;
win.wpv_gallery.edit_complete($('#attachment_id').val());
win.tb_remove();
}
});
return false;
});
});