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
ready
created
attached
Example alerts "created", "ready", "attached" x 2 in stable and canary (flags):
<head> <script src="http://www.polymer-project.org/platform.js"></script> <link rel="import" href="http://www.polymer-project.org/polymer.html"> <link rel="import" href="xfoo.html"> </head> <body is="polymer-body" unresolved> <x-foo></x-foo> </body> </html>
xfoo.html:
<polymer-element name="x-foo"> <template>x-foo</template> <script> Polymer('x-foo', { created: function() { alert("created"); }, ready: function() { alert("ready"); }, attached: function() { alert("attached"); } }); </script> </polymer-element>
Test: http://jsbin.com/juxecuqa/1/edit
The text was updated successfully, but these errors were encountered:
This is still a problem in Polymer 0.2.3 under Windows Chrome Version 34.0.1847.131 m
Sorry, something went wrong.
Closing since polymer-body has been removed in favor of <template is="auto-binding">
polymer-body
<template is="auto-binding">
No branches or pull requests
Example alerts "created", "ready", "attached" x 2 in stable and canary (flags):
xfoo.html:
Test: http://jsbin.com/juxecuqa/1/edit
The text was updated successfully, but these errors were encountered: