https://github.com/samcrosoft/ngrightclickbinder
This creates a simple directive in angular js that binds the execution of a function to the context menu event (i.e Right Click) on an element.
https://github.com/samcrosoft/ngrightclickbinder
Last synced: 3 months ago
JSON representation
This creates a simple directive in angular js that binds the execution of a function to the context menu event (i.e Right Click) on an element.
- Host: GitHub
- URL: https://github.com/samcrosoft/ngrightclickbinder
- Owner: samcrosoft
- License: mit
- Created: 2014-05-21T11:55:10.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-21T12:31:58.000Z (about 11 years ago)
- Last Synced: 2025-01-29T12:30:19.702Z (5 months ago)
- Language: JavaScript
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.html
- License: LICENSE
Awesome Lists containing this project
README
ngRightClickBinder
This creates a simple directive in angular js that binds the execution of a function to the context menu event (i.e Right Click) on an element.
.justbasicstyle{
height: 200px;
width: 130px;
background: #efefef;
border: 1px solid #999;
text-align: center;}
<div class'justbasicstyle' on-right-click="screamOut()">
Right Click Me
</div>