Fixed #64 and fixed sub view controllers and tabs

Moved tabs to be absolute not fixed so they can easily
be placed inside of containers
This commit is contained in:
Max Lynch
2013-11-08 18:09:48 -06:00
parent c73cc43c21
commit 6ab1f49688
14 changed files with 145 additions and 162 deletions

View File

@ -6,13 +6,13 @@
* You see it all over iOS apps, where it offers a set of options
* triggered after an action.
*/
ionic.views.Popup = function(opts) {
var _this = this;
ionic.views.Popup = ionic.views.View.inherit({
initialize: function(opts) {
var _this = this;
this.el = opts.el;
};
this.el = opts.el;
},
ionic.views.Popup.prototype = {
setTitle: function(title) {
var titleEl = el.querySelector('.popup-title');
if(titleEl) {
@ -33,6 +33,6 @@
this.el.classList.remove('active');
}
};
});
})(ionic);