mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-27 14:22:21 -06:00
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
Template.ionView.helpers({
|
|
classes: function () {
|
|
var classes = ['view'];
|
|
|
|
if (this.class) {
|
|
classes.push(this.class);
|
|
}
|
|
|
|
return classes.join(' ');
|
|
}
|
|
});
|