Angular and non-angular NavController working

This commit is contained in:
Max Lynch
2013-09-19 15:06:08 -05:00
parent 4caa67d722
commit 81f8bd811c
4 changed files with 35 additions and 25 deletions

View File

@ -4,11 +4,18 @@ describe('TabBarController', function() {
beforeEach(function() {
var tabEl = $('<div class="tabs"></div>');
ctrl = new TabBarController({
tabBar: new TabBar({ el: tabEl.get(0) })
tabBar: new TabBar({
el: tabEl.get(0),
itemAdded: function(item) {
},
itemRemoved: function(item) {
}
})
});
})
it('Should add Controllers', function() {
debugger;
ctrl.addController({
title: 'Item 1',
icon: 'icon-home',