Opened 15 years ago
Closed 14 years ago
#2933 closed bug (worksforme)
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" )
Change History (2)
comment:1 Changed 15 years ago by
need: | Review → Test Case |
---|
comment:2 Changed 14 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Not observed in 1.2.6 or 1.3.
Note: See
TracTickets for help on using
tickets.
Hi Tom
We need a test case where this happens. Could you please provide one ?