aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js/app.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-22 18:24:32 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-22 18:24:32 +0200
commit2ac953e6a8949259b54f700cd6f9bc7eb48aadd5 (patch)
treefe843598651fc68e12feb48489b657a0cf484e33 /apps/files_trashbin/js/app.js
parent91d9d45c6c55d5ee2f44567893cf96d034aaed1e (diff)
downloadnextcloud-server-2ac953e6a8949259b54f700cd6f9bc7eb48aadd5.tar.gz
nextcloud-server-2ac953e6a8949259b54f700cd6f9bc7eb48aadd5.zip
correct progress-icon to icon-loading-small
Diffstat (limited to 'apps/files_trashbin/js/app.js')
-rw-r--r--apps/files_trashbin/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/js/app.js b/apps/files_trashbin/js/app.js
index 0afa871bc9c..376ee7b01ca 100644
--- a/apps/files_trashbin/js/app.js
+++ b/apps/files_trashbin/js/app.js
@@ -41,7 +41,7 @@ OCA.Trashbin.App = {
var fileList = context.fileList;
var tr = fileList.findFileEl(filename);
var deleteAction = tr.children("td.date").children(".action.delete");
- deleteAction.removeClass('icon-delete').addClass('progress-icon');
+ deleteAction.removeClass('icon-delete').addClass('icon-loading-small');
fileList.disableActions();
$.post(OC.filePath('files_trashbin', 'ajax', 'undelete.php'), {
files: JSON.stringify([filename]),
@@ -58,7 +58,7 @@ OCA.Trashbin.App = {
$('.tipsy').remove();
var tr = fileList.findFileEl(filename);
var deleteAction = tr.children("td.date").children(".action.delete");
- deleteAction.removeClass('icon-delete').addClass('progress-icon');
+ deleteAction.removeClass('icon-delete').addClass('icon-loading-small');
fileList.disableActions();
$.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), {
files: JSON.stringify([filename]),