Renamed JS files, removed ionic- prefix.

This commit is contained in:
Max Lynch
2013-09-22 23:30:53 -05:00
parent 8846e9a174
commit 946672cd84
6 changed files with 122 additions and 0 deletions

14
js/viewController.js Normal file
View File

@ -0,0 +1,14 @@
(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() {
}
};
})(this.ionic);