Skip to content
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

Added dynamically changing enabled state #93

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,15 @@ Sometimes you'll want to catch the same event that's being used by this library
```
Note that if you set this to true, and don't catch it with something else the browser's context menu will be shown on top of this library's context menu.

## Dynamically enable/disable context menu
Sometimes you may wish to dynamically enable or disable the context menu. TO do this simple use the `context-menu-enabled` property and pass in a boolean value. Default: `true`
```
<button class="btn btn-default"
context-menu="otherMenuOptions"
context-menu-enabled="contextMenuEnabled"
model="'Blue'">Right Click allow event propagation</button>
```

## Nested Menus (v0.9.5+)

Nested lists work by appending an array as the last index of any list of menu items.
Expand Down
Loading