Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Most of your code runs in the global scope, such as your Event handlers and other top-level functions that they call. Unfortunately you can't define overrides in there because Javascript will find the original API features living in the global scope, see that they are locked, and throw a big fat error at you.

...