Searched refs:flashEvent (Results 1 – 1 of 1) sorted by relevance
167 WebSocket.prototype.__handleEvent = function(flashEvent) { argument169 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 …]