lint should have errored before

This commit is contained in:
john19696 2022-08-25 13:27:04 +01:00
parent 27c5b7c592
commit 63799408af

View File

@ -202,7 +202,7 @@ class OptionsWaiter {
uxChange(e) { uxChange(e) {
const checked = $("#accessibleUX").is(":checked"); const checked = $("#accessibleUX").is(":checked");
const UXstyle = "display:" + (checked ? "block" : "none"); const UXstyle = "display:" + (checked ? "block" : "none");
$('html > head').append($('<style>.accessibleUX {' + UXstyle + '; }</style>')); $("html > head").append($("<style>.accessibleUX {" + UXstyle + "; }</style>"));
} }
} }