Files
ionic-framework/js/controllers/viewController.js
2013-10-01 10:45:20 -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);