openvidu-browser: dependencies update

pull/255/head
pabloFuente 2019-03-26 09:53:02 +01:00
parent 76b2895a25
commit ecb766ae36
2 changed files with 10 additions and 10 deletions

View File

@ -1,31 +1,31 @@
{
"author": "OpenVidu",
"dependencies": {
"@types/node": "11.9.4",
"@types/node": "11.11.7",
"@types/platform": "1.3.2",
"freeice": "2.2.2",
"hark": "1.2.3",
"platform": "1.3.5",
"uuid": "3.3.2",
"wolfy87-eventemitter": "5.2.5"
"wolfy87-eventemitter": "5.2.6"
},
"description": "OpenVidu Browser",
"devDependencies": {
"browserify": "16.2.3",
"grunt": "1.0.3",
"grunt": "1.0.4",
"grunt-autoprefixer": "3.0.4",
"grunt-cli": "1.3.2",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-sass": "1.0.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-string-replace": "1.3.1",
"grunt-ts": "6.0.0-beta.22",
"tsify": "4.0.1",
"tslint": "5.12.1",
"tslint": "5.14.0",
"typedoc": "0.14.2",
"typescript": "3.3.3",
"uglify-js": "3.4.9"
"typescript": "3.3.4000",
"uglify-js": "3.5.2"
},
"license": "Apache-2.0",
"main": "lib/index.js",

View File

@ -376,7 +376,7 @@ export class Stream implements EventDispatcher {
* @hidden
*/
updateMediaStreamInVideos() {
this.ee.emitEvent('mediastream-updated');
this.ee.emitEvent('mediastream-updated', []);
}
/**
@ -724,7 +724,7 @@ export class Stream implements EventDispatcher {
if (this.displayMyRemote()) {
this.remotePeerSuccessfullyEstablished();
}
this.ee.emitEvent('stream-created-by-publisher');
this.ee.emitEvent('stream-created-by-publisher', []);
this.initWebRtcStats();
resolve();
})
@ -836,7 +836,7 @@ export class Stream implements EventDispatcher {
}
}
this.ee.emitEvent('mediastream-updated');
this.ee.emitEvent('mediastream-updated', []);
if (!this.displayMyRemote() && !!this.mediaStream.getAudioTracks()[0] && this.session.speakingEventsEnabled) {
this.enableSpeakingEvents();
}