Merge pull request #9488 from owncloud/fix-ctrl-click-app

fix loading spinner on ctrl click a app entry- fixes #9063
This commit is contained in:
Jan-Christoph Borchardt 2014-07-07 11:49:14 +02:00
commit b271e05bc9
1 changed files with 3 additions and 1 deletions

View File

@ -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');
}
});
}