mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
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
1 changed files with 3 additions and 1 deletions
|
|
@ -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 a new issue