mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-26 22:06:41 -06:00
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
Template.ionIcon.helpers({
|
|
classes: function () {
|
|
var classes = ['icon'];
|
|
classes.push('ion-' + this.icon);
|
|
|
|
if (this.class) {
|
|
classes.push(this.class);
|
|
}
|
|
|
|
return classes.join(' ');
|
|
}
|
|
});
|