[Pkg-owncloud-commits] [owncloud] 37/215: Add missing loading indicator for enabled apps
David Prévot
taffit at moszumanska.debian.org
Tue May 5 01:01:18 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 62bac7de910f06d6af4e8a7d46106aa32808f4a1
Author: Morris Jobke <hey at morrisjobke.de>
Date: Thu Apr 23 21:39:59 2015 +0200
Add missing loading indicator for enabled apps
* happened when an app gets activated, because the
new appended HTML doesn't contain the loading
image
* fixes #15806
---
settings/js/apps.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 1bd7ffd..58a0a31 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -321,8 +321,10 @@ OC.Settings.Apps = OC.Settings.Apps || {
var img= $('<img class="app-icon"/>').attr({ src: entry.icon});
var a=$('<a></a>').attr('href', entry.href);
var filename=$('<span></span>');
+ var loading = $('<div class="icon-loading-dark"></div>').css('display', 'none');
filename.text(entry.name);
a.prepend(filename);
+ a.prepend(loading);
a.prepend(img);
li.append(a);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list