Files
ionic-framework/js/views/headerBar.js
2013-09-26 22:38:25 -05:00

21 lines
400 B
JavaScript

(function(ionic) {
ionic.views.HeaderBar = function(opts) {
this.el = opts.el;
this._titleEl = this.el.querySelector('.title');
};
ionic.views.NavBar.prototype = {
resizeTitle: function() {
var e,
children = this.el.children,
index = Array.prototype.indexOf.call(children, this.el);
for(var i = 0; i < index; i++) {
e = children[i];
}
}
};
})(window.ionic);