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,6 +1,6 @@
(function(window, document, ion) {
(function(ionic) {
ion.Utils = {
ionic.Utils = {
/**
* extend method,
* also used for cloning when dest is an empty object
@ -19,4 +19,4 @@
return dest;
},
}
})(this, document, ion = this.ion || {});
})(window.ionic);