dart-archive / polymer-dart

Polymer support for Dart
https://pub.dartlang.org/packages/polymer
BSD 3-Clause "New" or "Revised" License
181 stars 33 forks source link

Is there a limit to declaring multiple custom events on an element? #662

Closed terrywarwar closed 8 years ago

terrywarwar commented 8 years ago

I have a handler which isn't being called when on an element with multiple declared handlers. If I place it on another element it works ok. All other handlers work fine. Is there a limit on the number of declared event handlers on one element?

<div on-show-details="onShowDetails"></div>
terrywarwar commented 8 years ago

Declared it with another handler and it worked.

<div on-hide-details="onHideDetails" on-show-details="onShowDetails"></div>