Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2015-01-26 18:11:25 +0300
committerRobin Appelman <robin@icewind.nl>2015-01-26 18:11:25 +0300
commit720f9173f74da12719b8c0898d1b687a74122e51 (patch)
treed832fdfcfda85422b8a6744ac360e41a03edabac
parentb4408c3ac71a246c171f8aac280a6e0444676dff (diff)
parent8f656bb6275a8d87ed3b34fe6a5e5aed8940791e (diff)
Merge pull request #147 from AdamWill/jsfixv8.0.0RC2v8.0.0RC1v8.0.0
gallery: don't display a spinner forever if empty
-rw-r--r--js/gallery.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gallery.js b/js/gallery.js
index 058d0668..c7e1a116 100644
--- a/js/gallery.js
+++ b/js/gallery.js
@@ -207,7 +207,7 @@ Gallery.view.pushBreadCrumb = function (text, path) {
Gallery.showEmpty = function () {
$('#controls').addClass('hidden');
$('#emptycontent').removeClass('hidden');
- $('#loading').addClass('hidden');
+ $('#content').removeClass('icon-loading');
};
Gallery.showLoading = function () {