mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
Renamed JS files, removed ionic- prefix.
This commit is contained in:
14
js/viewController.js
Normal file
14
js/viewController.js
Normal file
@ -0,0 +1,14 @@
|
||||
(function(ionic) {
|
||||
ionic.ViewController = function(options) {
|
||||
this.init();
|
||||
};
|
||||
|
||||
ion.ViewController.prototype = {
|
||||
// Initialize this view controller
|
||||
init: function() {
|
||||
},
|
||||
// Destroy this view controller, including all child views
|
||||
destroy: function() {
|
||||
}
|
||||
};
|
||||
})(this.ionic);
|
||||
Reference in New Issue
Block a user