Remove context menu on the main video

master
Daniel Berteaud 11 years ago
parent 34bdc2f27e
commit f44dac9b8e
  1. 7
      public/js/vroom.js

@ -338,7 +338,12 @@ function initVroom(room) {
else{
$('#mainVideo').html(el.clone().dblclick(function() {
fullScreen(this);
}).css('max-height', maxHeight()));
})
.bind('contextmenu', function(){
return false;
})
.css('max-height', maxHeight())
);
$('.selected').removeClass('selected');
el.addClass('selected');
mainVid = el.attr('id');

Loading…
Cancel
Save