meteor-ionic/components/ionTab/ionTab.js
2014-12-25 20:40:43 -05:00

11 lines
202 B
JavaScript

Template.ionTab.helpers({
url: function () {
if (this.href) {
return this.href;
}
if (this.path) {
return Router.routes[this.path].path(Template.parentData(1));
}
}
});