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
I put {{ name }} in my dom-module and when I refreshed I got a 'SyntaxError: Unexpected identifier' in the console. The bad method can be seen below:
(function(value
/**/) {
var old = this._setData(' name ', value);
if (value !== old) {
this._ name Effector(old);
}
})
This is coming from bind/bind.html and it looks like it isn't stripping space before/after the property name inside the {{}}. Changing to {{name}} fixes the issue.
I put {{ name }} in my dom-module and when I refreshed I got a 'SyntaxError: Unexpected identifier' in the console. The bad method can be seen below:
This is coming from bind/bind.html and it looks like it isn't stripping space before/after the property name inside the {{}}. Changing to {{name}} fixes the issue.
This is with 0.8-preview @ ce0a765
The text was updated successfully, but these errors were encountered: