mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
Added basic toderp
This commit is contained in:
13
js/ionic-viewcontroller.js
Normal file
13
js/ionic-viewcontroller.js
Normal file
@ -0,0 +1,13 @@
|
||||
(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 || {});
|
||||
Reference in New Issue
Block a user