mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
(function(ionic) {
|
|
'use strict';
|
|
ionic.ViewController = function(options) {
|
|
this.init();
|
|
};
|
|
|
|
ionic.ViewController.prototype = {
|
|
// Initialize this view controller
|
|
init: function() {
|
|
},
|
|
// Destroy this view controller, including all child views
|
|
destroy: function() {
|
|
}
|
|
};
|
|
})(window.ionic);
|