summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2020-05-01 15:34:14 +0200
committerSamuel Mannehed <samuel@cendio.se>2020-05-01 15:34:14 +0200
commite7fa686f329c3fb9e391387e0fdf28de1241f4a0 (patch)
treea8969bbe21b53cfc05eca78e510e20d49610beab
parent8df281cce6822b534ad43edc9efb18a5292e8e60 (diff)
downloadnovnc-e7fa686f329c3fb9e391387e0fdf28de1241f4a0.tar.gz
Fix indentation for focus check
-rw-r--r--app/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ui.js b/app/ui.js
index 8be8afb..32b6e98 100644
--- a/app/ui.js
+++ b/app/ui.js
@@ -520,7 +520,7 @@ const UI = {
idleControlbar() {
// Don't fade if a child of the control bar has focus
if (document.getElementById('noVNC_control_bar')
- .contains(document.activeElement) && document.hasFocus()) {
+ .contains(document.activeElement) && document.hasFocus()) {
UI.activateControlbar();
return;
}