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