mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Added a fix for bug #1331, which caused Safari 1.3 to crash.
This commit is contained in:
parent
fa7bfcfd78
commit
38d74fe912
@ -63,7 +63,7 @@ jQuery.extend({
|
|||||||
|
|
||||||
// Match: :even, :last-chlid, #id, .class
|
// Match: :even, :last-chlid, #id, .class
|
||||||
new RegExp("^([:.#]*)(" +
|
new RegExp("^([:.#]*)(" +
|
||||||
( jQuery.chars = "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)" ) + "+)")
|
( jQuery.chars = jQuery.browser.safari && jQuery.browser.version < "3.0.0" ? "\\w" : "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)" ) + "+)")
|
||||||
],
|
],
|
||||||
|
|
||||||
multiFilter: function( expr, elems, not ) {
|
multiFilter: function( expr, elems, not ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user