decide.nolog.cz/app/components/pretty-color.js

8 lines
197 B
JavaScript
Raw Normal View History

2014-07-06 17:37:54 +02:00
export default Ember.Component.extend({
classNames: ['pretty-color'],
attributeBindings: ['style'],
style: function(){
return 'color: ' + this.get('name') + ';';
}.property('name')
});