Files
Max Lynch 3d3ef32872 I broke all the things
Making scroll working for ListView, inheriting from ScrollView like iOS.
2013-10-25 21:09:22 -05:00

14 lines
262 B
JavaScript

(function(ionic) {
'use strict';
ionic.views.View = function() {
this.initialize.apply(this, arguments);
};
ionic.views.View.inherit = ionic.inherit;
ionic.extend(ionic.views.View.prototype, {
initialize: function() {}
});
})(window.ionic);