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:
commit
b271e05bc9
|
@ -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');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue