diff options
author | John Resig <jeresig@gmail.com> | 2010-01-15 10:49:18 -0500 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-01-15 10:49:18 -0500 |
commit | eb496f757a1eebef14eb5a1fdd971cc553f3540b (patch) | |
tree | 04dcc53e66ad2790385d61623df1d6c00d2739a0 | |
parent | 201816d8c541e3b93d9a955af680999b6f690a38 (diff) | |
download | jquery-eb496f757a1eebef14eb5a1fdd971cc553f3540b.tar.gz jquery-eb496f757a1eebef14eb5a1fdd971cc553f3540b.zip |
The inArray declaration was accidentally duplicated.
-rw-r--r-- | src/core.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core.js b/src/core.js index edd108906..5b8388ead 100644 --- a/src/core.js +++ b/src/core.js @@ -734,12 +734,6 @@ function doScrollCheck() { jQuery.ready(); } -if ( indexOf ) { - jQuery.inArray = function( elem, array ) { - return indexOf.call( array, elem ); - }; -} - function evalScript( i, elem ) { if ( elem.src ) { jQuery.ajax({ |