From 4710ec1822affc071c4f2140d0a26823bd430d8e Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 1 May 2020 15:34:14 +0200 Subject: [PATCH] Fix indentation for focus check --- kasmweb/app/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kasmweb/app/ui.js b/kasmweb/app/ui.js index 7105c2f..aac17a2 100644 --- a/kasmweb/app/ui.js +++ b/kasmweb/app/ui.js @@ -587,7 +587,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; }