Home
last modified time | relevance | path

Searched refs:flashEvent (Results 1 – 1 of 1) sorted by relevance

/external/libvncserver/webclients/novnc/include/web-socket-js/
Dweb_socket.js167 WebSocket.prototype.__handleEvent = function(flashEvent) { argument
169 if ("readyState" in flashEvent) {
170 this.readyState = flashEvent.readyState;
172 if ("protocol" in flashEvent) {
173 this.protocol = flashEvent.protocol;
177 if (flashEvent.type == "open" || flashEvent.type == "error") {
178 jsEvent = this.__createSimpleEvent(flashEvent.type);
179 } else if (flashEvent.type == "close") {
181 jsEvent.wasClean = flashEvent.wasClean ? true : false;
182 jsEvent.code = flashEvent.code;
[all …]