changed ID selector code
This commit is contained in:
parent
268c82a903
commit
f9dbb9f73a
2
jquery/jquery.js
vendored
2
jquery/jquery.js
vendored
|
@ -423,7 +423,7 @@ $.clean = function(a) {
|
||||||
|
|
||||||
$.g = {
|
$.g = {
|
||||||
'': "m[2] == '*' || a.nodeName.toUpperCase() == m[2].toUpperCase()",
|
'': "m[2] == '*' || a.nodeName.toUpperCase() == m[2].toUpperCase()",
|
||||||
'#': "a.attributes['id'].nodeValue == m[2]",
|
'#': "a.getAttribute('id') && a.getAttribute('id').nodeValue == m[2]",
|
||||||
':': {
|
':': {
|
||||||
lt: "i < m[3]-0",
|
lt: "i < m[3]-0",
|
||||||
gt: "i > m[3]-0",
|
gt: "i > m[3]-0",
|
||||||
|
|
Loading…
Reference in a new issue