It looks like you're new here. If you want to get involved, click one of these buttons!
$("#admin-upload-images").uploadify({
auto: true,
height: 23,
swf: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.swf',
uploader: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.php',
width: 96,
buttonClass: 'btn btn-inverse',
buttonCursor: 'pointer',
buttonText: 'Select Images',
fileTypeExts: 'png, jpg, gif, jpeg',
formData: { },
onUploadSuccess: function(file, data, response) {
alert('File '+file.name+' was uploaded!');
},
fileLimit: 100,
fileSizeLimit: '100000KB'
});$("#admin-upload-images").uploadify({
auto: true,
height: 23,
swf: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.swf',
uploader: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.php',
width: 96,
buttonClass: 'btn btn-inverse',
buttonCursor: 'pointer',
buttonText: 'Select Images',
fileTypeExts: 'png, jpg, gif, jpeg',
formData: { },
onUploadSuccess: function(file, data, response) {
alert('File '+file.name+' was uploaded!');
}
});