diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 12:35:25 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-06-17 12:35:25 +0200 |
commit | d9dcba9a39a468a0fe5cfaad99d6a7282ba2702a (patch) | |
tree | 198ecf6152129340303bb393267343fa30e9d3bf | |
parent | 078835ee9dd02e8f4cd8387c0eeace9913dc9349 (diff) | |
download | nextcloud-server-d9dcba9a39a468a0fe5cfaad99d6a7282ba2702a.tar.gz nextcloud-server-d9dcba9a39a468a0fe5cfaad99d6a7282ba2702a.zip |
remove unused loading spinners, just have one
-rw-r--r-- | apps/files_trashbin/js/trash.js | 4 | ||||
-rw-r--r-- | core/img/loader.gif | bin | 847 -> 0 bytes | |||
-rw-r--r-- | core/img/loading-dark.gif | bin | 673 -> 0 bytes |
3 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 82119a59517..307ac743a3c 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -4,7 +4,7 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history.svg'), 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', 'loader.gif') +'"></a>'; + 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"); var files = tr.attr('data-file'); undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; @@ -94,7 +94,7 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>'; + var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; diff --git a/core/img/loader.gif b/core/img/loader.gif Binary files differdeleted file mode 100644 index e192ca895cd..00000000000 --- a/core/img/loader.gif +++ /dev/null diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif Binary files differdeleted file mode 100644 index 5fe86acabc4..00000000000 --- a/core/img/loading-dark.gif +++ /dev/null |