mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-06-30 06:12:08 -06:00
11 lines
202 B
JavaScript
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));
|
|
}
|
|
}
|
|
});
|