blob: 5ec25a0678ce3a4153d5c8998ac0bd8a9f54f44b [file] [log] [blame]
try {
var url = decodeURIComponent(location.hash.substr(1))
var source = new EventSource(url)
source.onerror = function(e) {
postMessage([true, this.readyState, 'data' in e])
this.close();
}
} catch(e) {
postMessage([false, String(e)])
}