Browse Source

use history icon in Deleted Files template as well

tags/v6.0.0alpha2
Jan-Christoph Borchardt 11 years ago
parent
commit
2a57763542
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      apps/files_trashbin/js/trash.js
  2. 1
    1
      apps/files_trashbin/templates/index.php

+ 1
- 1
apps/files_trashbin/js/trash.js View File

@@ -2,7 +2,7 @@
$(document).ready(function() {

if (typeof FileActions !== 'undefined') {
FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), function(filename) {
FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) {
var tr=$('tr').filterAttr('data-file', filename);
var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>';
var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date");

+ 1
- 1
apps/files_trashbin/templates/index.php View File

@@ -18,7 +18,7 @@
<span class='selectedActions'>
<a href="" class="undelete">
<img class="svg" alt="<?php p($l->t( 'Restore' )); ?>"
src="<?php print_unescaped(OCP\image_path("core", "actions/undelete.png")); ?>" />
src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
<?php p($l->t('Restore'))?>
</a>
</span>

Loading…
Cancel
Save