Fix webcam not loading in safari.

LEARNER-3758
This commit is contained in:
Waheed Ahmed
2018-01-09 15:25:36 +05:00
parent 7a69d2f771
commit b3fe397f9b

View File

@@ -84,7 +84,7 @@
getUserMediaCallback: function(stream) {
var video = this.getVideo();
this.stream = stream;
video.src = this.URL.createObjectURL(stream);
video.srcObject = stream;
video.play();
this.trigger('webcam-loaded');
},