40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
"use strict";
|
|
|
|
$("#uploader").pluploadQueue({
|
|
// General settings
|
|
runtimes : 'html5,flash,silverlight,html4',
|
|
url : "/examples/upload",
|
|
|
|
chunk_size : '1mb',
|
|
rename : true,
|
|
dragdrop: true,
|
|
|
|
filters : {
|
|
// Maximum file size
|
|
max_file_size : '10mb',
|
|
// Specify what files to browse for
|
|
mime_types: [
|
|
{title : "Image files", extensions : "jpg,gif,png"},
|
|
{title : "Zip files", extensions : "zip"}
|
|
]
|
|
},
|
|
|
|
// Resize images on clientside if we can
|
|
resize: {
|
|
width : 200,
|
|
height : 200,
|
|
quality : 90,
|
|
crop: true // crop to exact dimensions
|
|
},
|
|
|
|
|
|
// Flash settings
|
|
flash_swf_url : '../../assets/plugins/plupload/js/Moxie.swf',
|
|
|
|
// Silverlight settings
|
|
silverlight_xap_url : '../../assets/plugins/plupload/js/Moxie.xap'
|
|
});
|
|
|
|
}); |