Files
ionic-framework/js/viewController.js
Max Lynch 37d708b05e Tests organization and cleanup
Moved hacking tests to test folder, got rid of ionic=window.ionic for
wrapper functions in JS files.
2013-09-24 17:22:36 -05:00

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);