Supports accentuated characters

with-route-provider
David Cormier 12 years ago
parent 1635f1df83
commit 9a4bdad55d
  1. 2
      js/protocol.js

@ -52,7 +52,7 @@ var Protocol = function() {
for (var c = 0; c < uia.length; c++) {
_str[c] = String.fromCharCode(uia[c]);
}
return _str.join("");
return decodeURIComponent(escape(_str.join("")));
};
var getInt = function() {

Loading…
Cancel
Save