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
Hello, just to indicate that
submit the following to the URL example http://www.polymer-project.org/docs/polymer/polymer.html not run properly on IE11, the color does not change the style (style="color:{{person.nameColor}}").
Thank you
<polymer-element name="name-tag" attributes="person">
<template>
Hello! My name is <span style="color:{{person.nameColor}}">{{person.name}}</span>
</template>
<script>
Polymer('name-tag', {
created: function() {
this.person = {
name: "Scott",
nameColor: "orange"
}
}
});
</script>
</polymer-element>
How do you do it in this case: class = "MyColor", because this example doesn't work?
<template>
<style>
.MyColor
{
color:{{person.nameColor}}
}
</style>
<div>Hello! My name is <span class="MyColor">{{person.name}}</span></div>
</template>
Hello, just to indicate that
submit the following to the URL example http://www.polymer-project.org/docs/polymer/polymer.html not run properly on IE11, the color does not change the style (style="color:{{person.nameColor}}").
Thank you
The text was updated successfully, but these errors were encountered: