Side navigation
#2933 closed bug (worksforme)
Opened May 24, 2008 03:38PM UTC
Closed January 14, 2009 04:48AM UTC
jQuery-1.2.3.js, jQuery-1.2.5.js - function filter
Reported by: | Tom Freudenberg | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.5 |
Component: | core | Version: | 1.2.3 |
Keywords: | filter | Cc: | |
Blocked by: | Blocking: |
Description
jQuery will generate a lot of errors in browser console. This is happen by a missing typeof test. This was happen after changes from jQuery 1.2.2 to jQuery 1.2.3.
Please find attached diff extract for jQuery-1.2.3 and jQuery-1.2.5
jQuery.1.2.3.js: change line 1764
jQuery.1.2.5.js: change line 1762
< if ( typeof fn == "string" ) --- > if ( typeof fn == "string" || typeof fn == "undefined" )
Hi Tom
We need a test case where this happens. Could you please provide one ?