'currentTime' property of stream elements are now supported by Temasys plugin.

This commit is contained in:
paweldomas 2016-02-01 15:17:59 -06:00
parent 0bf98bf6cf
commit ab13fa35b4
1 changed files with 0 additions and 5 deletions

View File

@ -201,11 +201,6 @@ RemoteVideo.prototype.waitForPlayback = function (streamElement, stream) {
}
self.VideoLayout.videoactive(streamElement, self.id);
streamElement.onplaying = null;
if (RTCBrowserType.isTemasysPluginUsed()) {
// 'currentTime' is used to check if the video has started
// and the value is not set by the plugin, so we do it
streamElement.currentTime = 1;
}
};
streamElement.onplaying = onPlayingHandler;
};