jQuery-contextMenu
jQuery-contextMenu copied to clipboard
jQuery contextMenu plugin & polyfill
I believe this bit of code: ``` if(opt.dataAttr){ $.each(opt.dataAttr, function (key, item) { opt.$menu.attr('data-' + opt.key, item); }); } ``` Should in fact be: ``` if(opt.dataAttr){ $.each(opt.dataAttr, function (key, item)...
Currently this plugin uses the incorrect style: ``` .context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg { position: absolute; top: .3em; left: .5em; color: #2980b9; } ``` This style doesn't take into account icon...
Hi, Sometimes I get the error below. > TypeError: Cannot read property 'isContentEditable' of null > at \jquery.contextMenu.min.js:1:4830
Hello, when you load submenus dinamically, it seems, that zindex is not applied. So if you have context menu that does not fit the screen and you load submenus it...
(source: jQuery contextMenu v2.8.0) for { selectableSubMenu: true }... my comments (FIXME) in code... ```javascript // contextMenu item click itemClick: function (e) { var $this = $(this), data = $this.data(),...
Where can i say that the jQuery Context Menu should be displayed in. I would like to be able to adjust for example the submenu being always inside a div.
Steps to reproduce: 1. go to https://swisnl.github.io/jQuery-contextMenu/demo/sub-menus.html in Chrome 2. open Developer tools (`Ctrl + Shift + I`) 3. use mobile device view (`Ctrl + Shift + M`) 4. Use...
in article [https://swisnl.github.io/jQuery-contextMenu/docs.html#events](doc), have typo `preShow` instead `prevShow`
i am getting this error TypeError: $trigger.data(...) is not a function when i try to load menu asynchronously
Hello, I'm using Jquery ContextMenu. And i wonder how i can use it with big menu and sub menu. Indeed, the menu is out of the screen. And when you...