Files
ionic-framework/js/ionic-viewcontroller.js
2013-09-01 17:00:05 -05:00

14 lines
330 B
JavaScript

(function(window, document, ion) {
ion.controllers = ion.controllers || {};
ion.controllers.ViewController = function(options) {
};
ion.controllers.ViewController.prototype = {
// Destroy this view controller, including all child views
destroy: function() {
}
};
})(this, document, ion = this.ion || {});