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:
cb0250f
)
Fixed #753 in Opera and IE
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Sun, 7 Jan 2007 23:19:13 +0000
(23:19 +0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Sun, 7 Jan 2007 23:19:13 +0000
(23:19 +0000)
src/jquery/jquery.js
patch
|
blob
|
history
diff --git
a/src/jquery/jquery.js
b/src/jquery/jquery.js
index
b6d1dec
..
e380441
100644
(file)
--- a/
src/jquery/jquery.js
+++ b/
src/jquery/jquery.js
@@
-1390,8
+1390,8
@@
jQuery.extend({
},
parseSetter: function(value) {
- if( typeof value == "string" && value[0] == "$" ) {
- var m = value.match(/^\${(.*)}$/);
+ if( typeof value == "string" && value.charAt(0) == "$" ) {
+ var m = value.match(/{(.*)}$/);
if ( m && m[1] ) {
value = new Function( "return " + m[1] );
}