-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Apply directives in order #2446
Labels
Comments
colincasey
pushed a commit
to colincasey/svelte
that referenced
this issue
May 10, 2019
colincasey
pushed a commit
to colincasey/svelte
that referenced
this issue
May 11, 2019
colincasey
added a commit
to colincasey/svelte
that referenced
this issue
May 11, 2019
tanhauhau
pushed a commit
to tanhauhau/svelte
that referenced
this issue
Dec 23, 2019
Re-opening this. The second example works well (for me, in Firefox) now in 3.16.6 - but the first one isn't. I'm still getting lower-case letters. The action works properly if the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently,
on:input
event handlers are applied before any event handlers from actions or bindings, regardless of the order in which they're declared. This makes certain tasks (such as input masking) overly difficult.Demos (which behave differently between Chrome and Firefox):
A solution would be to consistently apply directives in the order in which they're declared. It'll require some rejiggering though.
The text was updated successfully, but these errors were encountered: