|
|
@@ -268,6 +268,12 @@ RemoteVideo.prototype.updateConnectionStatusIndicator = function (isActive) {
|
|
268
|
268
|
|
|
269
|
269
|
if(this.connectionIndicator)
|
|
270
|
270
|
this.connectionIndicator.updateConnectionStatusIndicator(isActive);
|
|
|
271
|
+
|
|
|
272
|
+ // Toggle thumbnail video problem filter
|
|
|
273
|
+ this.selectVideoElement().toggleClass(
|
|
|
274
|
+ "videoThumbnailProblemFilter", !isActive);
|
|
|
275
|
+ this.$avatar().toggleClass(
|
|
|
276
|
+ "videoThumbnailProblemFilter", !isActive);
|
|
271
|
277
|
};
|
|
272
|
278
|
|
|
273
|
279
|
/**
|
|
|
@@ -300,6 +306,8 @@ RemoteVideo.prototype.waitForPlayback = function (streamElement, stream) {
|
|
300
|
306
|
var onPlayingHandler = function () {
|
|
301
|
307
|
self.VideoLayout.videoactive(streamElement, self.id);
|
|
302
|
308
|
streamElement.onplaying = null;
|
|
|
309
|
+ // Refresh to show the video
|
|
|
310
|
+ self.updateView();
|
|
303
|
311
|
};
|
|
304
|
312
|
streamElement.onplaying = onPlayingHandler;
|
|
305
|
313
|
};
|