mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 02:14:45 +01:00
Fixed compatibility issues with IE
This commit is contained in:
parent
1800367a2d
commit
aca6fc8c5d
@ -18,7 +18,7 @@ function _egw_json_escape_string(input)
|
|||||||
|
|
||||||
for (var i = 0; i < len; i++)
|
for (var i = 0; i < len; i++)
|
||||||
{
|
{
|
||||||
switch (input[i])
|
switch (input.charAt(i))
|
||||||
{
|
{
|
||||||
case '"':
|
case '"':
|
||||||
res += '\\"';
|
res += '\\"';
|
||||||
@ -53,7 +53,7 @@ function _egw_json_escape_string(input)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
res += input[i];
|
res += input.charAt(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user