-
Notifications
You must be signed in to change notification settings - Fork 57
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
Support Octane (glimmer/modifiers) #131
Comments
This would be awesome. |
Oh, looks like it's available |
Looks like jQuery's const $toggle = $('.x-toggle-container');
$toggle.trigger('panright'); Where the element is <span
{{recognize-gesture 'pan'}}
{{on 'panleft' this.handlePanLeft}}
{{on 'panright' this.handlePanRight}}
> |
use native custom event, dispatch jquery is broken for all events, and with pointer events/ui events - even more so... (i am assuming you have figured this out, probably by asking runspired, so closing, if not, feel free to reopen). |
FWIW |
Thought I'd open this since 3.15/Octane is officially out and recommended, and this is the only addon in my app which gets in the way.
The only real issue as far as I can see is the requirement of the recognizer mixin. I know you can still use
extend
with an Ember Component as in #127 but this doesn't work with a Glimmer Component.From my understanding, the appropriate alternative would be a "modifier" which gets added to the element in the template instead. Perhaps I'm missing something to do with Managers though which makes it not that simple.
The text was updated successfully, but these errors were encountered: