Broken login page for Webkit Browsers #7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
An user reported that they weren't able to log in. They were using Safari (-> Webkit) on Mac OS. A quick look in the Browser Console showed an JavaScript ReferenceError.
I was able to reproduce the error in Epiphany Browser (also Webkit) on Linux.
This is the error message:
assigned to @W13R
It seems like this problem exists because I put all javascript code in login.js into an isolated scope to protect variables from global access.
I discovered that it works when I use
(defining a function and immediately calling it)
instead of
(defining a scope with curly braces)
This is stupid.
changed the description
mentioned in commit
4fd02a8498
The mentioned commit (
4fd02a84
) fixes the issue for me.