fix #2711 using a custom event, also use css selectors over filterAttr
This commit is contained in:
parent
057d7aa108
commit
ff67f115d4
|
@ -65,7 +65,7 @@ var FileActions = {
|
|||
FileActions.currentFile = parent;
|
||||
var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
|
||||
var file = FileActions.getCurrentFile();
|
||||
if ($('tr').filterAttr('data-file', file).data('renaming')) {
|
||||
if ($('tr[data-file="'+file+'"]').data('renaming')) {
|
||||
return;
|
||||
}
|
||||
parent.children('a.name').append('<span class="fileactions" />');
|
||||
|
@ -164,11 +164,12 @@ $(document).ready(function () {
|
|||
window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val());
|
||||
});
|
||||
}
|
||||
|
||||
$('#fileList tr').each(function () {
|
||||
FileActions.display($(this).children('td.filename'));
|
||||
});
|
||||
|
||||
$('#fileList').trigger(jQuery.Event("fileActionsReady"));
|
||||
|
||||
});
|
||||
|
||||
FileActions.register('all', 'Delete', OC.PERMISSION_DELETE, function () {
|
||||
|
|
|
@ -4,6 +4,10 @@ $(document).ready(function() {
|
|||
|
||||
if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) {
|
||||
|
||||
$('#fileList').one('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;
|
||||
|
@ -33,6 +37,5 @@ $(document).ready(function() {
|
|||
OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions);
|
||||
}
|
||||
});
|
||||
OC.Share.loadIcons('file');
|
||||
}
|
||||
});
|
|
@ -22,9 +22,9 @@ OC.Share={
|
|||
if (itemType != 'file' && itemType != 'folder') {
|
||||
$('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center');
|
||||
} else {
|
||||
var file = $('tr').filterAttr('data-id', item);
|
||||
var file = $('tr[data-id="'+item+'"]');
|
||||
if (file.length > 0) {
|
||||
var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share');
|
||||
var action = $(file).find('.fileactions .action[data-action="Share"]');
|
||||
var img = action.find('img').attr('src', image);
|
||||
action.addClass('permanent');
|
||||
action.html(' '+t('core', 'Shared')).prepend(img);
|
||||
|
@ -36,7 +36,7 @@ OC.Share={
|
|||
// Search for possible parent folders that are shared
|
||||
while (path != last) {
|
||||
if (path == data['path']) {
|
||||
var actions = $('.fileactions .action').filterAttr('data-action', 'Share');
|
||||
var actions = $('.fileactions .action[data-action="Share"]');
|
||||
$.each(actions, function(index, action) {
|
||||
var img = $(action).find('img');
|
||||
if (img.attr('src') != OC.imagePath('core', 'actions/public')) {
|
||||
|
|
Loading…
Reference in New Issue