|
@@ -174,15 +174,7 @@ JitsiTrack.prototype._maybeFireTrackAttached = function (container) {
|
174
|
174
|
*/
|
175
|
175
|
JitsiTrack.prototype.attach = function (container) {
|
176
|
176
|
if(this.stream) {
|
177
|
|
- // The container must be visible in order to play or attach the stream
|
178
|
|
- // when Temasys plugin is in use
|
179
|
|
- var containerSel = $(container);
|
180
|
|
- if (RTCBrowserType.isTemasysPluginUsed() &&
|
181
|
|
- !containerSel.is(':visible')) {
|
182
|
|
- containerSel.show();
|
183
|
|
- }
|
184
|
|
- container
|
185
|
|
- = RTCUtils.attachMediaStream(container, this.stream);
|
|
177
|
+ container = RTCUtils.attachMediaStream(container, this.stream);
|
186
|
178
|
}
|
187
|
179
|
this.containers.push(container);
|
188
|
180
|
|