diff --git a/public/react/src/App.js b/public/react/src/App.js index e71185988..d09d67903 100644 --- a/public/react/src/App.js +++ b/public/react/src/App.js @@ -346,7 +346,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 {