(message, cb=null)
| 85 | } |
| 86 | |
| 87 | send(message, cb=null) { |
| 88 | message.wrapper_nonce = this.wrapper_nonce |
| 89 | message.id = this.next_message_id |
| 90 | this.next_message_id++ |
| 91 | this.target.postMessage(message, '*') |
| 92 | if (cb) { |
| 93 | this.waiting_cb[message.id] = cb |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | log(...args) { |
| 98 | console.log.apply(console, ['[ZeroFrame]'].concat(args)) |