2012-08-22 20:31:54 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2013-01-26 17:07:35 +04:00
|
|
|
var disableSharing = $('#disableSharing').data('status');
|
|
|
|
|
2013-01-23 12:18:26 +04:00
|
|
|
if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) {
|
2013-01-14 23:30:39 +04:00
|
|
|
|
2012-10-29 00:01:50 +04:00
|
|
|
FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) {
|
2012-08-22 20:31:54 +04:00
|
|
|
if ($('#dir').val() == '/') {
|
|
|
|
var item = $('#dir').val() + filename;
|
|
|
|
} else {
|
|
|
|
var item = $('#dir').val() + '/' + filename;
|
|
|
|
}
|
2012-08-23 22:48:35 +04:00
|
|
|
var tr = $('tr').filterAttr('data-file', filename);
|
|
|
|
if ($(tr).data('type') == 'dir') {
|
2012-08-22 20:31:54 +04:00
|
|
|
var itemType = 'folder';
|
|
|
|
} else {
|
|
|
|
var itemType = 'file';
|
|
|
|
}
|
2012-08-23 22:48:35 +04:00
|
|
|
var possiblePermissions = $(tr).data('permissions');
|
2012-08-24 18:01:01 +04:00
|
|
|
var appendTo = $(tr).find('td.filename');
|
2012-08-22 20:31:54 +04:00
|
|
|
// Check if drop down is already visible for a different file
|
|
|
|
if (OC.Share.droppedDown) {
|
2012-10-09 20:42:49 +04:00
|
|
|
if ($(tr).data('id') != $('#dropdown').attr('data-item-source')) {
|
2012-08-22 20:31:54 +04:00
|
|
|
OC.Share.hideDropDown(function () {
|
2012-08-24 18:01:01 +04:00
|
|
|
$(tr).addClass('mouseOver');
|
2012-09-19 07:56:00 +04:00
|
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
|
2012-08-22 20:31:54 +04:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
OC.Share.hideDropDown();
|
|
|
|
}
|
|
|
|
} else {
|
2012-08-24 18:01:01 +04:00
|
|
|
$(tr).addClass('mouseOver');
|
2012-09-19 07:56:00 +04:00
|
|
|
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
|
2012-08-22 20:31:54 +04:00
|
|
|
}
|
|
|
|
});
|
2012-10-29 00:01:50 +04:00
|
|
|
OC.Share.loadIcons('file');
|
2012-08-22 20:31:54 +04:00
|
|
|
}
|
2012-12-11 02:22:42 +04:00
|
|
|
});
|