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 is likely this is just a mistake and it should probably be evt.target. All browsers currently have a window scoped object called event available in all event handlers which is why the current code works and tested fine. So while the code does not need to change the use of window.event is depreciated so should probably still be corrected.
There is a typo in the function expression
eventListener
declared within the functionaddEventListener
Line 2514 (on version 2.0.4) reads:
but should read:
The variable event is not defined in this function
The text was updated successfully, but these errors were encountered: