Working angular tabs!

This commit is contained in:
Max Lynch
2013-09-18 08:56:52 -05:00
parent afe3660867
commit d213be65a1
4 changed files with 27 additions and 40 deletions

View File

@ -94,13 +94,11 @@ TabBarController.prototype = {
addController: function(controller) {
this.controllers.push(controller);
var item = TabBarItem.prototype.create({
this.tabBar.addItem({
title: controller.title,
icon: controller.icon
});
this.tabBar.addItem(item);
// If we don't have a selected controller yet, select the first one.
if(!this.selectedController) {
this.setSelectedController(0);