Skip to content

Commit 688ff7c

Browse files
committed
Regenerate dist and fixes issue #523
1 parent b78a3c2 commit 688ff7c

12 files changed

+11
-19
lines changed

dist/font/context-menu-icons.eot

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.ttf

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.woff

-4 Bytes
Binary file not shown.

dist/font/context-menu-icons.woff2

-12 Bytes
Binary file not shown.

dist/jquery.contextMenu.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Licensed under
1313
* MIT License http://www.opensource.org/licenses/mit-license
1414
*
15-
* Date: 2017-04-03T15:28:34.264Z
15+
* Date: 2017-04-24T14:45:19.183Z
1616
*/
1717
@-webkit-keyframes cm-spin {
1818
0% {
@@ -54,8 +54,8 @@
5454
font-style: normal;
5555
font-weight: normal;
5656

57-
src: url("font/context-menu-icons.eot?596za");
58-
src: url("font/context-menu-icons.eot?596za#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?596za") format("woff2"), url("font/context-menu-icons.woff?596za") format("woff"), url("font/context-menu-icons.ttf?596za") format("truetype");
57+
src: url("font/context-menu-icons.eot?3oxsr");
58+
src: url("font/context-menu-icons.eot?3oxsr#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?3oxsr") format("woff2"), url("font/context-menu-icons.woff?3oxsr") format("woff"), url("font/context-menu-icons.ttf?3oxsr") format("truetype");
5959
}
6060

6161
.context-menu-icon-add:before {

dist/jquery.contextMenu.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Licensed under
1212
* MIT License http://www.opensource.org/licenses/mit-license
1313
*
14-
* Date: 2017-04-24T14:40:19.719Z
14+
* Date: 2017-04-24T14:45:19.531Z
1515
*/
1616

1717
// jscs:disable
@@ -549,7 +549,7 @@
549549
// If targetZIndex is heigher then opt.zIndex dont progress any futher.
550550
// This is used to make sure that if you are using a dialog with a input / textarea / contenteditable div
551551
// and its above the contextmenu it wont steal keys events
552-
if (targetZIndex > opt.zIndex) {
552+
if (opt.$menu && parseInt(targetZIndex,10) > parseInt(opt.$menu.css("zIndex"),10)) {
553553
return;
554554
}
555555
switch (e.keyCode) {
@@ -856,10 +856,6 @@
856856
return;
857857
}
858858

859-
console.log(opt)
860-
console.log(opt.$menu)
861-
862-
863859
if(opt && opt.$menu && opt.$menu.hasClass('context-menu-visible')){
864860
return;
865861
}

dist/jquery.contextMenu.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)