瀏覽代碼

Fixes JSDocs

master
hristoterezov 9 年之前
父節點
當前提交
b74bf57210
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. 3
    3
      modules/RTC/JitsiTrack.js

+ 3
- 3
modules/RTC/JitsiTrack.js 查看文件

86
 /**
86
 /**
87
  * Sets handler to the WebRTC MediaStream or MediaStreamTrack object depending
87
  * Sets handler to the WebRTC MediaStream or MediaStreamTrack object depending
88
  * on the passed type.
88
  * on the passed type.
89
- * @param type {string} the type of the handler that is going to be set
90
- * @param handler {Function} the handler.
89
+ * @param {string} type the type of the handler that is going to be set
90
+ * @param {Function} handler the handler.
91
  */
91
  */
92
 JitsiTrack.prototype._setHandler = function (type, handler) {
92
 JitsiTrack.prototype._setHandler = function (type, handler) {
93
     if(this.stream) {
93
     if(this.stream) {
104
 /**
104
 /**
105
  * Sets the stream property of JitsiTrack object and sets all stored handlers
105
  * Sets the stream property of JitsiTrack object and sets all stored handlers
106
  * to it.
106
  * to it.
107
- * @param stream {MediaStream} the new stream.
107
+ * @param {MediaStream} stream the new stream.
108
  */
108
  */
109
 JitsiTrack.prototype._setStream = function (stream) {
109
 JitsiTrack.prototype._setStream = function (stream) {
110
     this.stream = stream;
110
     this.stream = stream;

Loading…
取消
儲存