Closed chriswininger closed 8 years ago
If you leave the var off the front of variable declaration it is hoisted to global.
Somewhere in our code this is happening with self and making self implicitly defined to window which can lead to weird hard to detect bugs.
We need to find and fix this. Already masked some strange things
guess self is actually defaulted to window, did not know that was a thing. learn something new everyday
If you leave the var off the front of variable declaration it is hoisted to global.
Somewhere in our code this is happening with self and making self implicitly defined to window which can lead to weird hard to detect bugs.
We need to find and fix this. Already masked some strange things