(url)
| 12 | |
| 13 | class ZeroFrame { |
| 14 | constructor(url) { |
| 15 | this.url = url |
| 16 | this.waiting_cb = {} |
| 17 | this.wrapper_nonce = document.location.href.replace(/.*wrapper_nonce=([A-Za-z0-9]+).*/, "$1") |
| 18 | this.connect() |
| 19 | this.next_message_id = 1 |
| 20 | this.init() |
| 21 | } |
| 22 | |
| 23 | init() { |
| 24 | return this |
no test coverage detected