-
Notifications
You must be signed in to change notification settings - Fork 2k
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
custom event handler matching is case sensitive #340
Comments
I can confirm this issue, the error returned is: Exception: The null object does not have a getter '_observe@0x29474386'. NoSuchMethodError : method not found: '_observe@0x29474386' |
@dannymk your error looks different, can you file a bug at http://dartbug.com/new with instructions to reproduce? it looks like you got a PolymerElement subtype with no associated polymer-element. You can try putting a breakpoint in |
Done: http://code.google.com/p/dart/issues/detail?id=16469 On Friday, January 31, 2014 4:42 PM, John Messerly [email protected] wrote: @dannymk your error looks different, can you file a bug at http://dartbug.com/new with instructions to reproduce? |
Dupe of #634 |
(reported by @ErikGrimes here: dart issue 14719 ... I'm not endorsing this one way or another, just passing it on :) )
What steps will reproduce the problem?
What is the expected output? What do you see instead?
The handler bound to on-polymerSelect should fire.
The handler doesn't fire.
What version of the product are you using? On what operating system?
0.8.9 build 19720
Please provide any additional information below.
If the name of the handler is case insensitive, then firing the event should be case insensitive as well. Otherwise, event names have to be all lowercase which make them difficult to read and write. You
can improve legibility with underscores, but then you get funky event handlers line on-polymer_select.
The text was updated successfully, but these errors were encountered: