mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
17 lines
413 B
JavaScript
17 lines
413 B
JavaScript
(function(ionic) {
|
|
'use strict';
|
|
ionic.controllers.ViewController = function(options) {
|
|
this.initialize.apply(this, arguments);
|
|
};
|
|
|
|
ionic.controllers.ViewController.inherit = ionic.inherit;
|
|
|
|
ionic.extend(ionic.controllers.ViewController.prototype, {
|
|
initialize: function() {},
|
|
// Destroy this view controller, including all child views
|
|
destroy: function() {
|
|
}
|
|
});
|
|
|
|
})(window.ionic);
|