Removed excessive js file wrapping code

I don't think we need to pass in window or document.
This commit is contained in:
Max Lynch
2013-09-22 23:56:40 -05:00
parent 86f3efde15
commit 432d9c5ca8
11 changed files with 42 additions and 45 deletions

View File

@ -1,4 +1,4 @@
(function(window, document, ionic) {
(function(ionic) {
TabBarController = function(options) {
this.tabBar = options.tabBar;
@ -119,4 +119,4 @@ TabBarController.prototype = {
},
}
})(this, document, ion = this.ionic || {});
})(window.ionic);