diff --git a/public/react/src/App.js b/public/react/src/App.js index 520855519..00f07ecbc 100644 --- a/public/react/src/App.js +++ b/public/react/src/App.js @@ -335,7 +335,7 @@ class App extends Component { } } disableVideoContextMenu = () => { - window.$( "body" ).on( "mousedown", "video", function() { + window.$( "body" ).on( "mousedown", "video", function(event) { if(event.which === 3) { window.$('video').bind('contextmenu',function () { return false; }); } else {