Skip to content
New issue

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

Graph - incorrect option property names #27

Closed
matt-sf opened this issue Sep 1, 2012 · 1 comment
Closed

Graph - incorrect option property names #27

matt-sf opened this issue Sep 1, 2012 · 1 comment
Labels

Comments

@matt-sf
Copy link

matt-sf commented Sep 1, 2012

The option property names for moveable and zoomable are not being set during initialization because the javascript file is using the wrong names:

this._moveable = options._moveable;
this._zoomable = options._zoomable;

rather than:

this._moveable = options.moveable;
this._zoomable = options.zoomable;

Until updated, the workaround is to use the _moveable and _zoomable property names in the option initialization.

josdejong added a commit that referenced this issue Sep 4, 2012
@josdejong
Copy link
Contributor

Thanks matt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants