Try to fix shared status icons again

This commit is contained in:
Michael Gapczynski 2012-10-28 16:36:17 -04:00
parent 60e5054ae8
commit e5a74903e4
1 changed files with 5 additions and 10 deletions

View File

@ -21,9 +21,12 @@ 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-file', OC.basename(item));
if (file.length > 0) {
$(file).find('.fileactions .action').filterAttr('data-action', 'Share').find('img').attr('src', image);
}
var dir = $('#dir').val();
if ($('#dir').val().length > 1) {
console.log(item);
if (dir.length > 1) {
var last = '';
var path = dir;
// Search for possible parent folders that are shared
@ -37,14 +40,6 @@ OC.Share={
last = path;
path = OC.Share.dirname(path);
}
} else {
var file = $('tr').filterAttr('data-file', OC.basename(item));
if (file.length > 0) {
var img = $(file).find('.fileactions .action').filterAttr('data-action', 'Share').find('img');
if (img.attr('src') != OC.imagePath('core', 'actions/public')) {
img.attr('src', image);
}
}
}
}
});