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{ else{
$('#mainVideo').html(el.clone().dblclick(function() { $('#mainVideo').html(el.clone().dblclick(function() {
fullScreen(this); fullScreen(this);
}).css('max-height', maxHeight())); })
.bind('contextmenu', function(){
return false;
})
.css('max-height', maxHeight())
);
$('.selected').removeClass('selected'); $('.selected').removeClass('selected');
el.addClass('selected'); el.addClass('selected');
mainVid = el.attr('id'); mainVid = el.attr('id');

Loading…
Cancel
Save