Fixes an error when clicking on a thumbnail without video.
This commit is contained in:
parent
e9a3b45316
commit
5f34f67fc5
11
app.js
11
app.js
|
@ -312,8 +312,15 @@ $(document).bind('remotestreamadded.jingle', function (event, data, sid) {
|
||||||
|
|
||||||
// Add click handler.
|
// Add click handler.
|
||||||
container.onclick = function (event) {
|
container.onclick = function (event) {
|
||||||
VideoLayout.handleVideoThumbClicked(
|
/*
|
||||||
$('#' + container.id + '>video').get(0).src);
|
* FIXME It turns out that videoThumb may not exist (if there is no
|
||||||
|
* actual video).
|
||||||
|
*/
|
||||||
|
var videoThumb = $('#' + container.id + '>video').get(0);
|
||||||
|
|
||||||
|
if (videoThumb)
|
||||||
|
VideoLayout.handleVideoThumbClicked(videoThumb.src);
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue