Files
ionic-framework/js/viewController.js
Max Lynch 432d9c5ca8 Removed excessive js file wrapping code
I don't think we need to pass in window or document.
2013-09-22 23:56:40 -05:00

15 lines
309 B
JavaScript

(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() {
}
};
})(window.ionic);