Fix going fullScreen when double clicking the main video

master
Daniel Berteaud 11 years ago
parent 2cf278e25b
commit 32790721f4
  1. 2
      public/js/vroom.js

@ -337,7 +337,7 @@ function initVroom(room) {
// Else, update the main video to use this one // Else, update the main video to use this one
else{ else{
$('#mainVideo').html(el.clone().dblclick(function() { $('#mainVideo').html(el.clone().dblclick(function() {
fullScreen(el); fullScreen(this);
}).css('max-height', maxHeight())); }).css('max-height', maxHeight()));
$('.selected').removeClass('selected'); $('.selected').removeClass('selected');
el.addClass('selected'); el.addClass('selected');

Loading…
Cancel
Save