()
| 69 | } |
| 70 | |
| 71 | _onDisconnect() { |
| 72 | console.log('WS: server disconnected'); |
| 73 | Events.fire('notify-user', 'Connection lost. Retry in 5 seconds...'); |
| 74 | clearTimeout(this._reconnectTimer); |
| 75 | this._reconnectTimer = setTimeout(_ => this._connect(), 5000); |
| 76 | } |
| 77 | |
| 78 | _onVisibilityChange() { |
| 79 | if (document.hidden) return; |