[Pkg-owncloud-commits] [owncloud] 27/70: fix loading spinner on ctrl click a app entry- fixes #9063
David Prévot
taffit at moszumanska.debian.org
Mon Jul 14 17:38:04 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 127ce3c5d9eedf84611b90414881f2cbf54cec6c
Author: Morris Jobke <hey at morrisjobke.de>
Date: Mon Jul 7 10:39:48 2014 +0200
fix loading spinner on ctrl click a app entry- fixes #9063
---
core/js/js.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/core/js/js.js b/core/js/js.js
index 544b266..72b65f4 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1138,7 +1138,9 @@ function initCore() {
if(!$app.is('a')) {
$app = $app.closest('a');
}
- $app.addClass('app-loading');
+ if(!event.ctrlKey) {
+ $app.addClass('app-loading');
+ }
});
}
--
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