not work in IE 11
paranoid945 opened this issue · 4 comments
paranoid945 commented
not work in IE 11
fijiwebdesign commented
Yes, shared webworkers is not available in IE and Safari. Only Chrome, Firefox and Opera.
http://caniuse.com/#search=shared%20web%20worker
I will add a conditional test and load original socket.io when webworkers is not supported.
StefansArya commented
How about using intercom.js as a fallback when shared webworkers was not available?
tony-gutierrez commented
Does this only use shared webworkers? It cant be written to use a dedicated?
fijiwebdesign commented
With version ^1.1.0
you can use a Worker
using:
ws.setWorkerType(Worker)
It will fallback to regular socket.io
if Worker
or SharedWorker
is not supported.