alignTitle

This commit is contained in:
Adam Bradley
2015-06-15 10:59:52 -05:00
parent 839c547f0c
commit 40a0744bc7
3 changed files with 39 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ export class Tab extends ViewController {
this.navbarView = item.navbarView = () => {
let activeItem = this.getActive();
return (activeItem && activeItem.navbarView()) || {};
return activeItem && activeItem.navbarView();
};
this.panelId = 'tab-panel-' + item.id;

View File

@@ -70,7 +70,6 @@ export class Tabs extends ViewController {
if (activeTab && activeTab.instance) {
return activeTab.instance.navbarView();
}
return {};
};
// a Tabs ViewItem should not have a back button