Closed ebidel closed 9 years ago
0.5 code:
<polymer-element name="chromedash-featurelist" on-scroll="{{onScrollList}}" on-keyup="{{onKeyUp}}">
gets transformed into:
hostAttributes: { on-scroll: '{{onScrollList}}', on-keyup: '{{onKeyUp}}', },
This should instead be under listeners and from {{}}.
listeners
{{}}
Thanks for the bug report!
Makes sense. Can we assume that any host attribute that begins with on- is a listener?
on-
Think so. That's a polymer specific feature.
0.5 code:
gets transformed into:
This should instead be under
listeners
and from{{}}
.