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
For methods defined like this:
Polymer( is: 'something-something', method: function() { return "something"; } );
The following works:
[[method(someObject)]]
But this does not work - the method is not invoked at all:
[[method()]]
The text was updated successfully, but these errors were encountered:
Can confirm. It seems like this is also failing if more than one argument is passed in, as can be seen in PolymerElements/paper-drawer-panel.
Sorry, something went wrong.
Accept no-arg computed fns as static. Fixes #1516.
48b329c
c001344
sjmiles
No branches or pull requests
For methods defined like this:
The following works:
But this does not work - the method is not invoked at all:
The text was updated successfully, but these errors were encountered: