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
Hi
Noticed that there is an error in the code in the tutorial instructions.
https://www.polymer-project.org/docs/start/tutorial/step-1.html
The last code box:
<script> var tabs = document.querySelector('paper-tabs'); tabs.addEventListener('core-select', function() { console.log("Selected: " + tabs.selected); }); </script> </body>
Should be:
<script> var tabs = document.querySelector('paper-tabs'); tabs.addEventListener('core-select', function(e) { console.log("Selected: " + tabs.selected); }); </script> </body>
/Emil
The text was updated successfully, but these errors were encountered:
This issue was moved to Polymer/old-docs-site#875
Sorry, something went wrong.
No branches or pull requests
Hi
Noticed that there is an error in the code in the tutorial instructions.
https://www.polymer-project.org/docs/start/tutorial/step-1.html
The last code box:
Should be:
/Emil
The text was updated successfully, but these errors were encountered: