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