We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The buttons for panning, centring and zooming are not listening to a mouse click event, and thus do not respond when clicking on it.
In src/script/view/workspace.js, I've tried changing
src/script/view/workspace.js
this.__zoom['in'].observe('click', function(event) {
to
this.__zoom['in'].click = function(event) {
or
this.__zoom['in'].addEventListener('click', function() {
but it doesn't fix it. I'm not sure why these buttons do not listen to a mouse click event.
They do respond to a mouse click programmatically, for example
me.__zoom['out'].click();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The buttons for panning, centring and zooming are not listening to a mouse click event, and thus do not respond when clicking on it.
In
src/script/view/workspace.js
, I've tried changingto
or
but it doesn't fix it. I'm not sure why these buttons do not listen to a mouse click event.
They do respond to a mouse click programmatically, for example
The text was updated successfully, but these errors were encountered: