mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
var wsSupport = require('has-cors');
|
|
|
|
require('./polling.js');
|
|
var uagent = navigator.userAgent;
|
|
var isOldSimulator = ~uagent.indexOf('iPhone OS 4') || ~uagent.indexOf('iPhone OS 5');
|
|
if (wsSupport && !isOldSimulator) {
|
|
require ('./ws.js');
|
|
}
|