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
When including the touch plugin, the touch functionality is always initialized when the carousel is created even though the touch option is false.
I think the _create method is lacking a check similar to what can be found in the autoscroll plugin:
_create: function () { _super._create.apply(this); if (!this.options.touch) { // <-- Hey, I'm new here return; } this._initDrag(); return; },
This is on v1.0.2. I'm using { touch: Modernizr && Modernizr.touch } like it was stated in the docs.
The text was updated successfully, but these errors were encountered:
Good spot, feel free to send a pull request and I'll merge it in!
Sorry, something went wrong.
No branches or pull requests
When including the touch plugin, the touch functionality is always initialized when the carousel is created even though the touch option is false.
I think the _create method is lacking a check similar to what can be found in the autoscroll plugin:
This is on v1.0.2. I'm using { touch: Modernizr && Modernizr.touch } like it was stated in the docs.
The text was updated successfully, but these errors were encountered: