Skip to content

Instantly share code, notes, and snippets.

@eliaskg
Created March 8, 2011 10:11
Show Gist options
  • Save eliaskg/860115 to your computer and use it in GitHub Desktop.
Save eliaskg/860115 to your computer and use it in GitHub Desktop.
Class creating problems with CPTextField
Object.prototype.disableRightClick = function(shouldDisable)
{
if (this._DOMElement)
var element = this._DOMElement;
else
var element = this;
element.oncontextmenu = shouldDisable ? function() { return false; } : null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment