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
<template is="x-repeat" items="[[package.tags]]"> <span name$="[[item]]">[[item]]</span> </template> <script> var package = { tags: ['first', 'second'] } </script>
This will cause the name attribute to appear as name=""first"" and typeof $0.name would be object because it's a String object.
name
name=""first""
typeof $0.name
object
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
This is fixed on master; primitives are no longer upgraded to their object counterparts in place.
No branches or pull requests
This will cause the
name
attribute to appear asname=""first""
andtypeof $0.name
would beobject
because it's a String object.The text was updated successfully, but these errors were encountered: