Merge pull request #2094 from jitsi/device_selection_popup_error
Fix device selection popup
This commit is contained in:
commit
d3e8856896
|
@ -8,7 +8,14 @@ import { getJitsiMeetGlobalNS, loadScript } from '../base/util';
|
||||||
|
|
||||||
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
||||||
|
|
||||||
export const sendAnalyticsEvent = analytics.sendEvent.bind(analytics);
|
/**
|
||||||
|
* Sends an analytics event.
|
||||||
|
*
|
||||||
|
* @inheritdoc
|
||||||
|
*/
|
||||||
|
export function sendAnalyticsEvent(...args: Array<any>) {
|
||||||
|
analytics.sendEvent(...args);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the analytics scripts and inits JitsiMeetJS.analytics by setting
|
* Loads the analytics scripts and inits JitsiMeetJS.analytics by setting
|
||||||
|
|
Loading…
Reference in New Issue