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
There is a call to unbind that unbinds all keydown handlers on document, not just those added by guiders.
The easiest solution for this is to use jQuery's namespaced events. Strictly, it is only needed when you're doing an unbind. But for consistency (and so unbinds can be added easily later), it's better to do it everywhere.
I will try to do a pull request for this shortly.
The text was updated successfully, but these errors were encountered:
There is a call to unbind that unbinds all keydown handlers on document, not just those added by guiders.
The easiest solution for this is to use jQuery's namespaced events. Strictly, it is only needed when you're doing an unbind. But for consistency (and so unbinds can be added easily later), it's better to do it everywhere.
I will try to do a pull request for this shortly.
The text was updated successfully, but these errors were encountered: