fix loading spinner on ctrl click a app entry- fixes #9063
This commit is contained in:
parent
6e9905d7cf
commit
ae8e27cc42
|
@ -1138,7 +1138,9 @@ function initCore() {
|
||||||
if(!$app.is('a')) {
|
if(!$app.is('a')) {
|
||||||
$app = $app.closest('a');
|
$app = $app.closest('a');
|
||||||
}
|
}
|
||||||
|
if(!event.ctrlKey) {
|
||||||
$app.addClass('app-loading');
|
$app.addClass('app-loading');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue