properly replace fileaction icons with pngs when needed

This commit is contained in:
Robin Appelman 2012-10-28 16:03:31 +01:00
parent 6695b29053
commit 0fbb99690b
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ var FileActions = {
}
var html = '<a href="#" class="action">';
if (img) {
html += '<img src="' + img + '"/> ';
html += '<img class ="svg" src="' + img + '"/> ';
}
html += t('files', name) + '</a>';
var element = $(html);
@ -111,7 +111,7 @@ var FileActions = {
}
var element = $(html);
if (img) {
element.append($('<img src="' + img + '"/>'));
element.append($('<img class ="svg" src="' + img + '"/>'));
}
element.data('action', 'Delete');
element.click(function (event) {