git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb0dfd9
)
Fix the ^= type attribute selector in firefox for href.
author
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 13 Feb 2007 19:06:38 +0000
(19:06 +0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 13 Feb 2007 19:06:38 +0000
(19:06 +0000)
src/selector/selector.js
patch
|
blob
|
history
diff --git
a/src/selector/selector.js
b/src/selector/selector.js
index
a21e579
..
c6692e1
100644
(file)
--- a/
src/selector/selector.js
+++ b/
src/selector/selector.js
@@
-59,7
+59,7
@@
jQuery.extend({
_resort: function(m){
return ["", m[1], m[3], m[2], m[5]];
},
- _prefix: "z=a[m[3]]||jQuery.attr(a,m[3]);"
+ _prefix: "z=jQuery.attr(a,m[3]);" // just use attr instead of checking for property first. href in firefox return full URI as property
},
"[": "jQuery.find(m[2],a).length"
},