diff options
-rw-r--r-- | core/js/js.js | 4 | ||||
-rw-r--r-- | settings/js/log.js | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 544b26647a9..72b65f41a16 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -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'); + } }); } diff --git a/settings/js/log.js b/settings/js/log.js index 5832c698ad5..197fef907a0 100644 --- a/settings/js/log.js +++ b/settings/js/log.js @@ -56,6 +56,7 @@ OC.Log={ row.append(messageTd); var timeTd=$('<td/>'); + timeTd.addClass('date'); if(isNaN(entry.time)){ timeTd.text(entry.time); } else { |