mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
14 lines
262 B
JavaScript
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);
|