Problem
Given a tab group with more than 5 tabs, touching the "More" tab to return to the list of "More" results in the nav bar messing up. Let me quantify "messing up": the title disappears, and the back button still exists.
It will be easier to understand what I mean if you run the sample code.
Sample Code
Drop the following in an app.js then do the following:
Touch the "More" tab
Touch "Tab 4"
Touch the "More" tab again (note: touch the TAB at the bottom of the screen, not the back button!)
Observe the nav bar
var tabGroup = Ti.UI.createTabGroup();
for (var i = 0; i < 6; i++) {
tabGroup.addTab(Ti.UI.createTab({
title: 'Tab ' + i,
window: Ti.UI.createWindow({
title:'Tab ' + i
})
}));
}
tabGroup.open();
Associated Helpdesk Ticket
http://appc.me/c/APP-492924
The enterprise customer's expectation on this is that we get a patch for 1.7 in. Their deadline is approximately 3 weeks. Can I pester you (Reggie) for an update on this, and for some timelining / planning? I know we've got a release going on, but that doesn't change our customer's demands. Just an FYI I am going to ask the same question on [TIMOB-4339]!
We are requesting that this be pulled into 1.7.1. Please advise after this afternoons meeting
As the commit mentions, a small little snippet was throwing Navbar off. All unneeded fix attempts cleaned up, snippet was only bit necessary.
against 1.7.1 GA