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
The Easter Egg which is triggered by addEventListener("keydown", Konami.code(toggle3D)); in 3d-fun.js doesn't seem to trigger when the appropriate combination of keys is entered. (Up, Up, Down, Down, Left, Right, Left, Right, B, A)
Tried to trigger the Easter Egg in Firefox Developer Edition (v76.0b3) and Google Chrome (v80.0.3987.163) but was unsuccessful.
My guess is that some file isn't being loaded / loaded properly, causing the easter egg trigger to not load.
Other notes:
if (event.keyCode === 66 || event.keyCode === 65) {event.preventDefault();} seems to work fine for Firefox (sign that konami.js is being loaded correctly, therefore that the key sequence is loaded)
BrowserFS fails to initialize in Firefox, which might have an impact on script loading?
The text was updated successfully, but these errors were encountered:
It seems to work in Minesweeper and Paint, but not the desktop.
I wonder if the folder-view div is getting in the way of actually focusing the desktop div?
Simply deleting it in the inspector doesn't seem to work.
In console, it has an error about BrowserFS failing to intialize:
The Easter Egg which is triggered by
addEventListener("keydown", Konami.code(toggle3D));
in3d-fun.js
doesn't seem to trigger when the appropriate combination of keys is entered. (Up, Up, Down, Down, Left, Right, Left, Right, B, A)Tried to trigger the Easter Egg in Firefox Developer Edition (v76.0b3) and Google Chrome (v80.0.3987.163) but was unsuccessful.
My guess is that some file isn't being loaded / loaded properly, causing the easter egg trigger to not load.
Other notes:
if (event.keyCode === 66 || event.keyCode === 65) {event.preventDefault();}
seems to work fine for Firefox (sign that konami.js is being loaded correctly, therefore that the key sequence is loaded)The text was updated successfully, but these errors were encountered: