## Test case for tab "break-out" problem. In Android, on button click in test 1, test 2 opens in its own window rather than within the tab group. ## index.xml ~~~ ~~~ ## index.js ~~~ Alloy.CFG = { "tab1" : $.tab1, "tab2" : $.tab2 }; $.index.open(); ~~~ ## test1.xml ~~~ ~~~ ## test1.js ~~~ $.testbutton.addEventListener('click', function(){ var test2 = Alloy.createController('test2').getView(); return Alloy.CFG.tab1.open(test2); }); ~~~ ## test2.xml ~~~ ~~~ ## test2.js ~~~ var args = arguments[0] || {}; ~~~