You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hmmm. I'm not entirely sure we want to change behavior here, though @rafaelw is the person to know for sure.
There is a difference between "{{ binding }}" vs having text on either side like "some {{ binding }} text". The former is treated as a data value, and can have a type like boolean. The latter is always a string. Imagine if you wrote false + ' ' in JavaScript. You'd get the string "false ". Same thing happens here. Even if we converted it to boolean, we'd still get true, which you can see from the JavaScript console: if ("false ") console.log("it's true!");
going to close tentatively, but please to let me know if I got that wrong. It definitely happens :)
Trailing blank in template if cause the test to fail.
if this.classname=="something" and this.static==false in a polymer element
The text was updated successfully, but these errors were encountered: