Bug Tracker

Changes between Initial Version and Version 2 of Ticket #5570


Ignore:
Timestamp:
Nov 19, 2010, 3:15:21 AM (13 years ago)
Author:
snover
Comment:

This seems to already be the case in 1.4.4.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5570

    • Property Status changed from new to closed
    • Property Resolution changed from to worksforme
    • Property Component changed from unfiled to selector
  • Ticket #5570 – Description

    initial v2  
    33In jQuery.debug.js line 2012:
    44
    5   var name = match[1],
     5  `var name = match[1]`,
    66
    77You should change to this:
    88
    9   var name = match[1].replace(/\\/g, ""),
     9  `var name = match[1].replace(/\\/g, "")`,
    1010
    1111(...as you do in the preFilter too)