Browse Source

fix: Fixes a typo (and pinning endpoints).

dev1
Boris Grozev 9 years ago
parent
commit
f06e18e0d3
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      modules/RTC/DataChannels.js

+ 2
- 2
modules/RTC/DataChannels.js View File

@@ -207,12 +207,12 @@ DataChannels.prototype.sendSelectedEndpointMessage = function (endpointId) {
207 207
  * or Error with "No opened data channels found!" message.
208 208
  */
209 209
 DataChannels.prototype.sendPinnedEndpointMessage = function (endpointId) {
210
-    this._onXXXEndpointChanged("pinnned", endpointId);
210
+    this._onXXXEndpointChanged("pinned", endpointId);
211 211
 };
212 212
 
213 213
 /**
214 214
  * Notifies Videobridge about a change in the value of a specific
215
- * endpoint-related property such as selected endpoint and pinnned endpoint.
215
+ * endpoint-related property such as selected endpoint and pinned endpoint.
216 216
  *
217 217
  * @param xxx the name of the endpoint-related property whose value changed
218 218
  * @param userResource the new value of the endpoint-related property after the

Loading…
Cancel
Save