Looks like event handlers need a bit of love after polyup: on-click=" someMethod " needs to be changed to on-click="someMethod" (spaces removed). It would be nice if polyup trimmed them automatically.
Workaround is to change them from on-click="{{ someMethod }}" to on-click="{{someMethod}}" before conversion
Looks like event handlers need a bit of love after polyup:
on-click=" someMethod "
needs to be changed toon-click="someMethod"
(spaces removed). It would be nice if polyup trimmed them automatically.Workaround is to change them from
on-click="{{ someMethod }}"
toon-click="{{someMethod}}"
before conversion