ソースを参照

Merge pull request #2094 from jitsi/device_selection_popup_error

Fix device selection popup
j8
virtuacoplenny 8年前
コミット
d3e8856896
1個のファイルの変更8行の追加1行の削除
  1. 8
    1
      react/features/analytics/functions.js

+ 8
- 1
react/features/analytics/functions.js ファイルの表示

8
 
8
 
9
 const logger = require('jitsi-meet-logger').getLogger(__filename);
9
 const logger = require('jitsi-meet-logger').getLogger(__filename);
10
 
10
 
11
-export const sendAnalyticsEvent = analytics.sendEvent.bind(analytics);
11
+/**
12
+ * Sends an analytics event.
13
+ *
14
+ * @inheritdoc
15
+ */
16
+export function sendAnalyticsEvent(...args: Array<any>) {
17
+    analytics.sendEvent(...args);
18
+}
12
 
19
 
13
 /**
20
 /**
14
  * Loads the analytics scripts and inits JitsiMeetJS.analytics by setting
21
  * Loads the analytics scripts and inits JitsiMeetJS.analytics by setting

読み込み中…
キャンセル
保存