-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Browser default actions #318
Browser default actions #318
Conversation
elem.oncontextmenu = function(event) { | ||
event.preventDefault(); | ||
*!* | ||
event.stopPropagation(); | ||
*/!* | ||
alert("Button context menu"); | ||
}; | ||
|
||
document.oncontextmenu = function(event) { | ||
event.preventDefault(); | ||
alert("Document context menu"); | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't use Formatters, remove the extra spaces.
Please make the requested changes. After it, add a comment "/done". |
/done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @MHMighani!
Thank you 💖 I updated the Progress Issue #1 🎉 🎉 🎉 |
Translation for the
Browser default actions
section