fix option
This commit is contained in:
parent
bc0b782fac
commit
27c5b7c592
@ -201,7 +201,8 @@ class OptionsWaiter {
|
|||||||
*/
|
*/
|
||||||
uxChange(e) {
|
uxChange(e) {
|
||||||
const checked = $("#accessibleUX").is(":checked");
|
const checked = $("#accessibleUX").is(":checked");
|
||||||
$(".accessibleUX").css("display", checked ? "block" : "none");
|
const UXstyle = "display:" + (checked ? "block" : "none");
|
||||||
|
$('html > head').append($('<style>.accessibleUX {' + UXstyle + '; }</style>'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user