From 631428d9668e485736470b0647fd6514cbd503a3 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Thu, 16 Feb 2017 15:24:53 +0100 Subject: [PATCH] Fix status class for IE IE apparently doesn't support removing several class specifiers at once, so switch to several calls. --- app/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ui.js b/app/ui.js index 7d4f081..75eeab9 100644 --- a/app/ui.js +++ b/app/ui.js @@ -560,9 +560,9 @@ var UI; status_type = 'normal'; } - statusElem.classList.remove("noVNC_status_normal", - "noVNC_status_warn", - "noVNC_status_error"); + statusElem.classList.remove("noVNC_status_normal"); + statusElem.classList.remove("noVNC_status_warn"); + statusElem.classList.remove("noVNC_status_error"); switch (status_type) { case 'warning': -- 2.39.2