Files
ionic-framework/js/viewController.js
Max Lynch e59ddfc529 Grunt updated with concat and jshint
Also added initial platform detection thing.
2013-09-23 10:16:19 -05:00

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