From ab13fa35b4e6fd6682cfb6fc4ae8bd69de1c27fa Mon Sep 17 00:00:00 2001 From: paweldomas Date: Mon, 1 Feb 2016 15:17:59 -0600 Subject: [PATCH] 'currentTime' property of stream elements are now supported by Temasys plugin. --- modules/UI/videolayout/RemoteVideo.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/UI/videolayout/RemoteVideo.js b/modules/UI/videolayout/RemoteVideo.js index 023901688..e1908869a 100644 --- a/modules/UI/videolayout/RemoteVideo.js +++ b/modules/UI/videolayout/RemoteVideo.js @@ -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; };