Fixing ReferenceError errors.
This commit is contained in:
parent
d55f5377bb
commit
7f2507aeaa
|
|
@ -653,7 +653,7 @@ return that; // Return the public API interface
|
|||
/*
|
||||
* Browser keypress to X11 keysym for Unicode characters > U+00FF
|
||||
*/
|
||||
unicodeTable = {
|
||||
var unicodeTable = {
|
||||
0x0104 : 0x01a1,
|
||||
0x02D8 : 0x01a2,
|
||||
0x0141 : 0x01a3,
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
// To enable WebSocket emulator debug:
|
||||
//window.WEB_SOCKET_DEBUG=1;
|
||||
|
||||
var Websock_native;
|
||||
if (window.WebSocket && !window.WEB_SOCKET_FORCE_FLASH) {
|
||||
Websock_native = true;
|
||||
} else if (window.MozWebSocket && !window.WEB_SOCKET_FORCE_FLASH) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue