tor-browser

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

eventsource-onmesage.js (200B)


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