Final fix for Safari crasher (bug #1331).
This commit is contained in:
parent
2278b24f70
commit
bdb5dad8e5
|
@ -63,7 +63,7 @@ jQuery.extend({
|
||||||
|
|
||||||
// Match: :even, :last-chlid, #id, .class
|
// Match: :even, :last-chlid, #id, .class
|
||||||
new RegExp("^([:.#]*)(" +
|
new RegExp("^([:.#]*)(" +
|
||||||
( jQuery.chars = jQuery.browser.safari && jQuery.browser.version < 416.12 ? "(?:[\\w*_-]|\\\\.)" : "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)" ) + "+)")
|
( jQuery.chars = jQuery.browser.safari && parseInt(jQuery.browser.version) < 417 ? "(?:[\\w*_-]|\\\\.)" : "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)" ) + "+)")
|
||||||
],
|
],
|
||||||
|
|
||||||
multiFilter: function( expr, elems, not ) {
|
multiFilter: function( expr, elems, not ) {
|
||||||
|
|
Loading…
Reference in a new issue