Added textWrap class to item

This commit is contained in:
Francis Poirier 2015-03-09 10:34:03 -04:00
parent 55085b3800
commit f3c24019a5

View file

@ -29,6 +29,10 @@ Template.ionItem.helpers({
classes.push('item-button-right');
}
if (this.textWrap) {
classes.push('item-text-wrap');
}
return classes.join(' ');
},