mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
14 lines
330 B
JavaScript
14 lines
330 B
JavaScript
(function(window, document, ion) {
|
|
|
|
ion.controllers = ion.controllers || {};
|
|
|
|
ion.controllers.ViewController = function(options) {
|
|
};
|
|
|
|
ion.controllers.ViewController.prototype = {
|
|
// Destroy this view controller, including all child views
|
|
destroy: function() {
|
|
}
|
|
};
|
|
})(this, document, ion = this.ion || {});
|