mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-21 22:54:53 +08:00
Check for BroadcastChannel availability before instantiating it
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
class BrowserTabsConnector {
|
class BrowserTabsConnector {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
if (!('BroadcastChannel' in window)) return;
|
||||||
|
|
||||||
this.bc = new BroadcastChannel('pairdrop');
|
this.bc = new BroadcastChannel('pairdrop');
|
||||||
this.bc.addEventListener('message', e => this._onMessage(e));
|
this.bc.addEventListener('message', e => this._onMessage(e));
|
||||||
Events.on('broadcast-send', e => this._broadcastSend(e.detail));
|
Events.on('broadcast-send', e => this._broadcastSend(e.detail));
|
||||||
|
|||||||
Reference in New Issue
Block a user