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
It occurs because this line in s.js exists when DOMContent loaded: LINE 40: localStorage.setItem("ab", true)
It also occurs because the function 'function popout()' in ta.js doesn't check for the local storage AB How to fix:
Make a new line on line 196 in ta.js:
Put code: if (!localStorage.getItem("ab")) {return null}
And also, in s.js:
Line 40 + 41 should be replaced by: // localStorage.setItem("ab", true)
document.getElementById("ab-settings-switch").checked = localStorage.getItem("ab")
The text was updated successfully, but these errors were encountered:
When I turn off the auto AB, it doesn't disable.
It occurs because this line in s.js exists when DOMContent loaded:
LINE 40: localStorage.setItem("ab", true)
It also occurs because the function 'function popout()' in ta.js doesn't check for the local storage AB
How to fix:
Make a new line on line 196 in ta.js:
Put code: if (!localStorage.getItem("ab")) {return null}
And also, in s.js:
Line 40 + 41 should be replaced by: // localStorage.setItem("ab", true)
document.getElementById("ab-settings-switch").checked = localStorage.getItem("ab")
The text was updated successfully, but these errors were encountered: