Browse Source

Fixes the filename in require call of data channels file.

j8
hristoterezov 10 years ago
parent
commit
a1da42ff00
2 changed files with 244 additions and 243 deletions
  1. 243
    242
      libs/modules/RTC.bundle.js
  2. 1
    1
      modules/RTC/RTC.js

+ 243
- 242
libs/modules/RTC.bundle.js
File diff suppressed because it is too large
View File


+ 1
- 1
modules/RTC/RTC.js View File

94
         this.rtcUtils.obtainAudioAndVideoPermissions();
94
         this.rtcUtils.obtainAudioAndVideoPermissions();
95
     },
95
     },
96
     onConferenceCreated: function(event) {
96
     onConferenceCreated: function(event) {
97
-        var DataChannels = require("./datachannels");
97
+        var DataChannels = require("./DataChannels");
98
         DataChannels.bindDataChannelListener(event.peerconnection);
98
         DataChannels.bindDataChannelListener(event.peerconnection);
99
     },
99
     },
100
     muteRemoteVideoStream: function (jid, value) {
100
     muteRemoteVideoStream: function (jid, value) {

Loading…
Cancel
Save