mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-27 06:18:11 -06:00
19 lines
325 B
JavaScript
19 lines
325 B
JavaScript
Template.ionNavBackButton.helpers({
|
|
text: function () {
|
|
if (this.text) {
|
|
return this.text;
|
|
} else {
|
|
return 'Back';
|
|
}
|
|
},
|
|
|
|
url: function () {
|
|
if (this.href) {
|
|
return this.href;
|
|
}
|
|
|
|
if (this.path) {
|
|
return Router.routes[this.path].path(Template.parentData(1));
|
|
}
|
|
}
|
|
});
|