Commit 8c5a28c0 by Mitsuhiro Tanda

improve dollar escape

parent 7229c59b
...@@ -116,7 +116,7 @@ function (angular, _) { ...@@ -116,7 +116,7 @@ function (angular, _) {
.keys(d) .keys(d)
.each(function(k) { .each(function(k) {
var v = d[k]; var v = d[k];
result[k.replace(/\$/g, '\\$')] = v.replace(/\$/g, '\\$'); result[k.replace(/\$/g, '\uFF04')] = v.replace(/\$/g, '\$');
}); });
return result; return result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment