- Ticket 1166 -> Orden de los idiomas ES FR EN RU git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
15 lines
341 B
JavaScript
15 lines
341 B
JavaScript
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;
|
|
});
|
|
});
|