1304b511e9
Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
var disableSharing = $('#disableSharing').data('status');
|
|
|
|
if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) {
|
|
|
|
$('#fileList').on('fileActionsReady',function(){
|
|
OC.Share.loadIcons('file');
|
|
});
|
|
|
|
FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) {
|
|
if ($('#dir').val() == '/') {
|
|
var item = $('#dir').val() + filename;
|
|
} else {
|
|
var item = $('#dir').val() + '/' + filename;
|
|
}
|
|
var tr = $('tr').filterAttr('data-file', filename);
|
|
if ($(tr).data('type') == 'dir') {
|
|
var itemType = 'folder';
|
|
} else {
|
|
var itemType = 'file';
|
|
}
|
|
var possiblePermissions = $(tr).data('permissions');
|
|
var appendTo = $(tr).find('td.filename');
|
|
// Check if drop down is already visible for a different file
|
|
if (OC.Share.droppedDown) {
|
|
if ($(tr).data('id') != $('#dropdown').attr('data-item-source')) {
|
|
OC.Share.hideDropDown(function () {
|
|
$(tr).addClass('mouseOver');
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
|
|
});
|
|
} else {
|
|
OC.Share.hideDropDown();
|
|
}
|
|
} else {
|
|
$(tr).addClass('mouseOver');
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
|
|
}
|
|
});
|
|
}
|
|
});
|