We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<polymer-element name="x-foo"> <template> <div on-tap="{{tapHandler}}">tap me!</div> </template> <script> Polymer('x-foo', { tapHandler: function() { console.log('tapped!') } }); </script> </polymer-element> <x-foo></x-foo>
If you inspect the DOM you will see the function strings appears in the markup:
<div on-tap="function () { console.log('tapped!') }">tap me!</div>
The text was updated successfully, but these errors were encountered:
Fixed via googlearchive/polymer-dev@4652afd
Sorry, something went wrong.
Fixes Polymer#378
4652afd
No branches or pull requests
If you inspect the DOM you will see the function strings appears in the markup:
The text was updated successfully, but these errors were encountered: