ie10 lws url workaround

Signed-off-by: John Harrison <john@h-agtec.com>
This commit is contained in:
John Harrison 2013-12-10 21:20:03 +08:00 committed by Andy Green
parent 793e7c07d8
commit 8d5793bc16

View file

@ -233,7 +233,9 @@ function get_appropriate_ws_url()
u = u.split('/');
return pcol + u[0];
/* + "/xxx" bit is for IE10 workaround */
return pcol + u[0] + "/xxx";
}