Browse Source

doc(ParticipantConnectionStatus): fix argument types order

dev1
paweldomas 8 years ago
parent
commit
22eb21057b
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      modules/connectivity/ParticipantConnectionStatus.js

+ 5
- 5
modules/connectivity/ParticipantConnectionStatus.js View File

@@ -21,8 +21,8 @@ const RTC_MUTE_TIMEOUT = 1000;
21 21
  * JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED events.
22 22
  *
23 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 27
 function ParticipantConnectionStatus(rtc, conference) {
28 28
     this.rtc = rtc;
@@ -232,7 +232,7 @@ ParticipantConnectionStatus.prototype.onRemoteTrackRemoved
232 232
 /**
233 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 236
  * be processed.
237 237
  */
238 238
 ParticipantConnectionStatus.prototype.onTrackRtcMuted = function(track) {
@@ -261,7 +261,7 @@ ParticipantConnectionStatus.prototype.onTrackRtcMuted = function(track) {
261 261
 /**
262 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 265
  * will be processed.
266 266
  */
267 267
 ParticipantConnectionStatus.prototype.onTrackRtcUnmuted = function(track) {
@@ -281,7 +281,7 @@ ParticipantConnectionStatus.prototype.onTrackRtcUnmuted = function(track) {
281 281
 /**
282 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 285
  * the signalling mute/unmute event will be processed.
286 286
  */
287 287
 ParticipantConnectionStatus.prototype.onSignallingMuteChanged

Loading…
Cancel
Save