ソースを参照

doc(ParticipantConnectionStatus): fix argument types order

dev1
paweldomas 8年前
コミット
22eb21057b
1個のファイルの変更5行の追加5行の削除
  1. 5
    5
      modules/connectivity/ParticipantConnectionStatus.js

+ 5
- 5
modules/connectivity/ParticipantConnectionStatus.js ファイルの表示

21
  * JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED events.
21
  * JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED events.
22
  *
22
  *
23
  * @constructor
23
  * @constructor
24
- * @param rtc {RTC} the RTC service instance
25
- * @param conference {JitsiConference} parent conference instance
24
+ * @param {RTC} rtc the RTC service instance
25
+ * @param {JitsiConference} conference parent conference instance
26
  */
26
  */
27
 function ParticipantConnectionStatus(rtc, conference) {
27
 function ParticipantConnectionStatus(rtc, conference) {
28
     this.rtc = rtc;
28
     this.rtc = rtc;
232
 /**
232
 /**
233
  * Handles RTC 'onmute' event for the video track.
233
  * Handles RTC 'onmute' event for the video track.
234
  *
234
  *
235
- * @param track {JitsiRemoteTrack} the video track for which 'onmute' event will
235
+ * @param {JitsiRemoteTrack} track the video track for which 'onmute' event will
236
  * be processed.
236
  * be processed.
237
  */
237
  */
238
 ParticipantConnectionStatus.prototype.onTrackRtcMuted = function(track) {
238
 ParticipantConnectionStatus.prototype.onTrackRtcMuted = function(track) {
261
 /**
261
 /**
262
  * Handles RTC 'onunmute' event for the video track.
262
  * Handles RTC 'onunmute' event for the video track.
263
  *
263
  *
264
- * @param track {JitsiRemoteTrack} the video track for which 'onunmute' event
264
+ * @param {JitsiRemoteTrack} track the video track for which 'onunmute' event
265
  * will be processed.
265
  * will be processed.
266
  */
266
  */
267
 ParticipantConnectionStatus.prototype.onTrackRtcUnmuted = function(track) {
267
 ParticipantConnectionStatus.prototype.onTrackRtcUnmuted = function(track) {
281
 /**
281
 /**
282
  * Here the signalling "mute"/"unmute" events are processed.
282
  * Here the signalling "mute"/"unmute" events are processed.
283
  *
283
  *
284
- * @param track {JitsiRemoteTrack} the remote video track for which
284
+ * @param {JitsiRemoteTrack} track the remote video track for which
285
  * the signalling mute/unmute event will be processed.
285
  * the signalling mute/unmute event will be processed.
286
  */
286
  */
287
 ParticipantConnectionStatus.prototype.onSignallingMuteChanged
287
 ParticipantConnectionStatus.prototype.onSignallingMuteChanged

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