diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-03-14 00:23:36 +0100 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-04 12:27:21 -0400 |
commit | ba16ba2efcb0a7703d1332044de87bf12700a66e (patch) | |
tree | 777a0bafa09779ca073b0e4fc55db701ccce4d63 /src/core.js | |
parent | 6da5eb10337c29c61ebc09fb8e3975509f58f419 (diff) | |
download | jquery-ba16ba2efcb0a7703d1332044de87bf12700a66e.tar.gz jquery-ba16ba2efcb0a7703d1332044de87bf12700a66e.zip |
Update grunt-contrib-jshint to 0.3.0, part 2, close gh-1203.
Diffstat (limited to 'src/core.js')
-rw-r--r-- | src/core.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core.js b/src/core.js index 66c60774b..67fa24c77 100644 --- a/src/core.js +++ b/src/core.js @@ -404,8 +404,7 @@ jQuery.extend({ isArray: Array.isArray, isWindow: function( obj ) { - /* jshint eqeqeq: false */ - return obj != null && obj == obj.window; + return obj != null && obj === obj.window; }, isNumeric: function( obj ) { |