ACC SHELL
// file ajax upload
function initEditPageScriptAfterFormFileUpload()
{
var thumb = $('#collectionFilePreview');
if ( typeof( $('#collectionFileUploadInputFile').val() ) != 'undefined' )
{
new AjaxUpload( 'collectionFileUploadInputFile',
{
action: $('#collectionFileUploadForm').attr('action'),
onSubmit: function( file, extension )
{
$('#collectionFilePreview').addClass('admin-loading');
thumb.html('');
},
onComplete: function( file, response )
{
$('#collectionFilePreview').removeClass('admin-loading');
thumb.html(response);
showLabelSaved();
}
} );
}
}
ACC SHELL 2018