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
at line 193 in the attched handler... I add verification if color attribute exist if so I fire the event...
attached: function() {
// Note: we won't actually render these color boxes unless the menu is
// actually tapped.
this._renderedColors = false;
if(this.getAttribute("color")!=null){
this.color = this.getAttribute("color")
this.fire('color-picker-selected', {color: this.color});
}
this._updateSize();
},
at line 275 I set the property of --iron-icon-fill-color
The icon color dosent change...
In the file paper-swatch-picker
at line 193 in the attched handler... I add verification if color attribute exist if so I fire the event...
attached: function() {
// Note: we won't actually render these color boxes unless the menu is
// actually tapped.
this._renderedColors = false;
if(this.getAttribute("color")!=null){
this.color = this.getAttribute("color")
this.fire('color-picker-selected', {color: this.color});
}
},
at line 275 I set the property of --iron-icon-fill-color
_colorChanged: function() {
},
Now the icon is the correct color
Browsers Affected
The text was updated successfully, but these errors were encountered: