58 lines
1.5 KiB
JavaScript
Executable File
58 lines
1.5 KiB
JavaScript
Executable File
/*
|
|
* jQuery File Upload Plugin JS Example
|
|
* https://github.com/blueimp/jQuery-File-Upload
|
|
*
|
|
* Copyright 2010, Sebastian Tschan
|
|
* https://blueimp.net
|
|
*
|
|
* Licensed under the MIT license:
|
|
* http://www.opensource.org/licenses/MIT
|
|
*/
|
|
|
|
/* global $, window */
|
|
|
|
$(function () {
|
|
'use strict';
|
|
|
|
// Initialize the jQuery File Upload widget:
|
|
$('#fileupload').fileupload({
|
|
// Uncomment the following to send cross-domain cookies:
|
|
//xhrFields: {withCredentials: true},
|
|
url: '/convert',
|
|
redirect: '/wait',
|
|
});
|
|
|
|
// Enable iframe cross-domain access via redirect option:
|
|
$('#fileupload').fileupload(
|
|
'option',
|
|
'redirect',
|
|
window.location.href.replace(
|
|
/\/[^\/]*$/,
|
|
'/cors/result.html?%s'
|
|
)
|
|
);
|
|
|
|
// Load existing files:
|
|
$('#fileupload').addClass('fileupload-processing')
|
|
.bind('fileuploaddone', function (e, data) {
|
|
window.location = "/wait";
|
|
});
|
|
$.ajax({
|
|
// Uncomment the following to send cross-domain cookies:
|
|
//xhrFields: {withCredentials: true},
|
|
url: $('#fileupload').fileupload('option', 'url'),
|
|
dataType: 'json',
|
|
context: $('#fileupload')[0]
|
|
|
|
}).always(function () {
|
|
$(this).removeClass('fileupload-processing');
|
|
|
|
}).done(function (result) {
|
|
$(this).fileupload('option', 'done').call(
|
|
this,
|
|
$.Event('done'), {result: result}
|
|
);
|
|
});
|
|
|
|
});
|