diff options
| author | Misko Hevery | 2010-01-25 23:49:52 -0800 |
|---|---|---|
| committer | Misko Hevery | 2010-01-25 23:49:52 -0800 |
| commit | a2540fd581f35e8f79240d827d2252da5798c3a2 (patch) | |
| tree | 35d814703e9edbb2c36d0864b2f8a317bba4d830 /src/Angular.js | |
| parent | ba9eef40cfbb6cd969d566b43fd9129642d01351 (diff) | |
| download | angular.js-a2540fd581f35e8f79240d827d2252da5798c3a2.tar.bz2 | |
fixes to make it pass on IE
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js index bfbe8ee9..f06562da 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -20,7 +20,8 @@ if (typeof Node == 'undefined') { function noop() {} if (!window['console']) window['console']={'log':noop, 'error':noop}; -var consoleNode, jQuery, msie, +var consoleNode, msie, + jQuery = window['jQuery'] || window['$'], // weirdness to make IE happy foreach = _.each, extend = _.extend, angular = window['angular'] || (window['angular'] = {}), |
