Changes between Initial Version and Version 2 of Ticket #5570
- Timestamp:
- Nov 19, 2010, 3:15:21 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5570
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
worksforme
-
Property
Component
changed from
unfiled
toselector
-
Property
Status
changed from
-
Ticket #5570 – Description
initial v2 3 3 In jQuery.debug.js line 2012: 4 4 5 var name = match[1],5 `var name = match[1]`, 6 6 7 7 You should change to this: 8 8 9 var name = match[1].replace(/\\/g, ""),9 `var name = match[1].replace(/\\/g, "")`, 10 10 11 11 (...as you do in the preFilter too)