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
BF: handle multiple mouse objects in one Routine in JS
Previously we were defining the `xys` and `buttons` with local scope.
Instead remove that local definition (const/let) and the script compiler
will then automatically give it global scope (var at the top of the script)
To avoid likely clashes we've given more obscure names:
- `_buttonXYs`
- `_mouseButtons`
fixes psychopy/psychojs-88
0 commit comments