Just updated to 2.1.0 from 0.4.1, and realized that a bunch of my cursor listeners were not getting updates called on them.
I looked into the code, and it appears that where there used to be a λ used to build the hash, it's been changed to use /.
As such, any object that has / in it's keys can not listen to updates.
It's a pretty simple fix (just change / to λ in a couple places), but I'm thinking this may have been done for a reason. If not, could you change it back to use λ instead? / is a pretty common character, and is a bit annoying to not be able to use.
Just updated to 2.1.0 from 0.4.1, and realized that a bunch of my cursor listeners were not getting updates called on them.
I looked into the code, and it appears that where there used to be a
λ
used to build the hash, it's been changed to use/
.As such, any object that has
/
in it's keys can not listen to updates.It's a pretty simple fix (just change
/
toλ
in a couple places), but I'm thinking this may have been done for a reason. If not, could you change it back to useλ
instead?/
is a pretty common character, and is a bit annoying to not be able to use.