22 lines
656 B
JavaScript
22 lines
656 B
JavaScript
// Override download path to files_sharing/public.php
|
|
function fileDownloadPath(dir, file) {
|
|
return $('#downloadURL').val();
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
|
|
if (typeof FileActions !== 'undefined') {
|
|
var mimetype = $('#mimetype').val();
|
|
// Show file preview if previewer is available, images are already handled by the template
|
|
if (mimetype.substr(0, mimetype.indexOf('/')) != 'image') {
|
|
// Trigger default action if not download TODO
|
|
var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ);
|
|
if (typeof action === 'undefined') {
|
|
$('#noPreview').show();
|
|
} else {
|
|
action($('#filename').val());
|
|
}
|
|
}
|
|
}
|
|
|
|
}); |