ember-gestures
ember-gestures copied to clipboard
Gesture support for Ember Applications
Updated `recognize-gesture` modifier to use latest `ember-modifier` (fixes one deprecation) Fixed `recognize-gesture` invocation of `-gestures` service during render (fixes the other) Using ember-modifier requires a minimum of Ember 3.3 (rather...
I've upgraded an Ember 2 app to 3.26, and template compilation broke. Tracked it down to `ember-hammertime` - uninstall it and the problem goes away (in unrelated templates) https://github.com/html-next/ember-hammertime/issues/103 `ember-hammertime`...
It works with [email protected] but fails with [email protected] I have a simple template ```html ``` When rendering this template the following exception occurs: ``` TypeError: Cannot read property 'lookup' of...
Using the `{{recognize-gesture}}` modifier, two deprecations are triggered. The write-after-read-in-render occurs because the `retrieve()` method of the `-gestures` service is writing then reading an object that is managed using get...
Hi! When scrolling a website with ember-gestures on a touch device, the [`_fastFocus`](https://github.com/html-next/ember-gestures/blob/1054cc4fdb9b3e49fd81cd3b69fde920cd74e624/addon/event_dispatcher.js#L88) function will focus `input` elements that were accidentally touched in the attempt. As a result, the user...
Add newer Ember LTS's (3.16 and 3.20) to CI configuration.
Currently, to use ember-gestures with a module unification app, the resolver needs to be modified. ```js // src/resolver.js import Resolver from 'ember-resolver/resolvers/fallback'; import { merge } from '@ember/polyfills'; import buildResolverConfig...
Hi everyone!, I would like to add an example for testing ember gestures that I think can be really helpful. Any suggestions are welcome!
When I use an event handler on a component the event is passed to the handler when the event is detected. When I use an action the event is not...
Only Rotation works: ``` export default Ember.Component.extend(RecognizerMixin, { recognizers: 'rotate pinch' }); ``` Only Pinch works: ``` export default Ember.Component.extend(RecognizerMixin, { recognizers: 'pinch rotate' }); ``` How to use pinch...