Files
ionic-framework/js/viewController.js
Max Lynch 63e268f171 Added quick create ionic object in JS code
Makes it easy to include a few ionic files here and there.
2013-09-23 00:02:18 -05:00

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