tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

eventsource-close.js (206B)


      1 try {
      2  var source = new EventSource("../resources/message.py")
      3  source.onopen = function(e) {
      4    this.close()
      5    postMessage([true, this.readyState])
      6  }
      7 } catch(e) {
      8  postMessage([false, String(e)])
      9 }