fix loading spinner on ctrl click a app entry- fixes #9063

This commit is contained in:
Morris Jobke 2014-07-07 10:39:48 +02:00
parent 6e9905d7cf
commit ae8e27cc42
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');
}
});
}