From 63799408afff814c1f4cdf90ddedb6ac655a88af Mon Sep 17 00:00:00 2001 From: john19696 Date: Thu, 25 Aug 2022 13:27:04 +0100 Subject: [PATCH] lint should have errored before --- src/web/waiters/OptionsWaiter.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/waiters/OptionsWaiter.mjs b/src/web/waiters/OptionsWaiter.mjs index 73194519..0ba97400 100755 --- a/src/web/waiters/OptionsWaiter.mjs +++ b/src/web/waiters/OptionsWaiter.mjs @@ -202,7 +202,7 @@ class OptionsWaiter { uxChange(e) { const checked = $("#accessibleUX").is(":checked"); const UXstyle = "display:" + (checked ? "block" : "none"); - $('html > head').append($('')); + $("html > head").append($("")); } }