implement Fast Splash (and tweaks page for future)

This commit is contained in:
zefie
2022-10-15 21:13:05 -04:00
parent e7a5cc6ed6
commit 5bf073d075
7 changed files with 151 additions and 6 deletions

View File

@@ -86,7 +86,7 @@ class WTVShared {
if (typeof val === 'string')
val = val.toLowerCase();
return (val === true || val === "true" || val === 1);
return (val === true || val == "on" || val === "true" || val === 1);
}