You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
Checkboxes don't work in external settings on mag256. I made changes(adding function checkbox) to file external/settings/js/pres.js, and it start works on mag256, but on mag254 doesn't. I think there is a difference between mag254 and mag256 in checkbox handling.
function checkbox() {
if (document.activeElement.type == "checkbox"){
if(document.activeElement.checked) document.activeElement.checked = false;
else document.activeElement.checked = true;
}
}
function pressKey(e)
{
ec = e.keyCode;
if(!block)switch(ec)
{
case 9:e.preventDefault();break;
case 27:parent.wifi_ssid.length=0;back();break;
case 13:checkbox();fc=true;break;
The text was updated successfully, but these errors were encountered:
Hello.
Checkboxes don't work in external settings on mag256. I made changes(adding function checkbox) to file external/settings/js/pres.js, and it start works on mag256, but on mag254 doesn't. I think there is a difference between mag254 and mag256 in checkbox handling.
function checkbox() {
if (document.activeElement.type == "checkbox"){
if(document.activeElement.checked) document.activeElement.checked = false;
else document.activeElement.checked = true;
}
}
function pressKey(e)
{
ec = e.keyCode;
if(!block)switch(ec)
{
case 9:e.preventDefault();break;
case 27:parent.wifi_ssid.length=0;back();break;
case 13:checkbox();fc=true;break;
The text was updated successfully, but these errors were encountered: