summaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-05-31 10:42:13 +0200
committerVincent Petry <pvince81@owncloud.com>2016-05-31 10:42:13 +0200
commit9a9c1b9439055fc6ad9f8372b354e4fc7ce3bc02 (patch)
tree43140d5fa8758c9eee06c5efeb7dce7608bbf8e6 /apps/files/js
parent59ed464ee63a0719eeed3bbc2864749a2ce04ff0 (diff)
parent3538e90ba1e6e9aad0e665e18e4967b264c97e9a (diff)
downloadnextcloud-server-9a9c1b9439055fc6ad9f8372b354e4fc7ce3bc02.tar.gz
nextcloud-server-9a9c1b9439055fc6ad9f8372b354e4fc7ce3bc02.zip
Merge pull request #24822 from owncloud/fix-download-spinner
fixes size of the download spinner
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/fileactions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js
index c3d4fba9ef5..015635c2e1d 100644
--- a/apps/files/js/fileactions.js
+++ b/apps/files/js/fileactions.js
@@ -665,11 +665,11 @@
OCA.Files.FileActions.updateFileActionSpinner = function($downloadButtonElement, showIt) {
var $icon = $downloadButtonElement.find('.icon');
if (showIt) {
- var $loadingIcon = $('<span class="icon loading"></span>');
+ var $loadingIcon = $('<span class="icon icon-loading-small"></span>');
$icon.after($loadingIcon);
$icon.addClass('hidden');
} else {
- $downloadButtonElement.find('.loading').remove();
+ $downloadButtonElement.find('.icon-loading-small').remove();
$downloadButtonElement.find('.icon').removeClass('hidden');
}
};