font-onyx
Version:
Font-Awesome 3.2.1 Icons for Enyo Onyx
19 lines (16 loc) • 349 B
JavaScript
enyo.kind({
name: 'font.TextIcon',
kind: 'font.IconButton',
classes: 'text-icon',
components: [
{name: 'icon', tag: 'div'},
{name: 'text', classes: 'text', tag: 'div'}
],
/**
Set the text below the icon using the
content value
*/
contentChanged: function () {
this.$.text.setContent(this.getContent());
}
});