mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
Moved hacking tests to test folder, got rid of ionic=window.ionic for wrapper functions in JS files.
15 lines
311 B
JavaScript
15 lines
311 B
JavaScript
(function(ionic) {
|
|
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);
|