Conflicts:
	dist/ionic-simple.js
	dist/ionic.js
This commit is contained in:
Max Lynch
2013-10-01 16:25:01 -05:00
19 changed files with 115 additions and 50 deletions

View File

@ -0,0 +1,14 @@
(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);