Fix a bug in serialize.js that was breaking Zotero startup in Nightly (blame Tim Berners-Lee)

This commit is contained in:
Simon Kornblith 2011-06-22 17:55:36 +00:00
parent 6c6b9c8be2
commit fc6121e488

View File

@ -470,9 +470,9 @@ function backslashUify(str) {
for (var i=0; i<str.length; i++) {
k = str.charCodeAt(i);
if (k>65535)
res += '\U' + ('00000000'+n.toString(16)).slice(-8); // convert to upper?
res += '\\U' + ('00000000'+n.toString(16)).slice(-8); // convert to upper?
else if (k>126)
res += '\u' + ('0000'+n.toString(16)).slice(-4);
res += '\\u' + ('0000'+n.toString(16)).slice(-4);
else
res += str[i];
}