Skip to content

Instantly share code, notes, and snippets.

@mister-ben
Last active August 29, 2015 14:06
Show Gist options
  • Save mister-ben/72c923e6397dbe461cec to your computer and use it in GitHub Desktop.
Save mister-ben/72c923e6397dbe461cec to your computer and use it in GitHub Desktop.
Brightcove Smart Player plugin to inhibit right-click menu within the player iframe. Prevents the user using 'save as'. This only affects the context menu - a determined user can still download an HTTP video.
/*
Inhibits the right-click menu within the smart player iframe
*/
(function() {
document.addEventListener('contextmenu',function(e){
e.preventDefault();
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment