2023-05-16 10:50:42 +08:00

13 lines
411 B
JavaScript

$(document).ready(function()
{
$('#app').change();
$.setAjaxForm('#editForm', function(response)
{
if(response.result == 'success')
{
$('body', window.parent.document).find('.app-btn[data-id=' + response.entryID + ']').attr('data-reload', true);
setTimeout(function(){$('#triggerModal .close').click();window.location.reload();}, 1200);
}
});
});