Skip to content

Commit 195b0c7

Browse files
committed
Update changelog and regenerate dist
1 parent e00eecc commit 195b0c7

12 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
* ContextMenu appears with wrong position ([Issue #502](https://github.com/swisnl/jQuery-contextMenu/issues/502) thanks @apptaro
88
* Check if given selected value is a 0, if it is a zero so return it as is. Thanks @Falseee
9+
* Events are never trigger when opening a contextMenu right after the other ([Issue #454](https://github.com/swisnl/jQuery-contextMenu/issues/454) thanks @kagant15
910

1011
### 2.4.4
1112

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

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.woff2

20 Bytes
Binary file not shown.

dist/jquery.contextMenu.css

Lines changed: 3 additions & 3 deletions
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:10:39.288Z
15+
* Date: 2017-04-03T15:28:34.264Z
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?3a3vu");
58-
src: url("font/context-menu-icons.eot?3a3vu#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?3a3vu") format("woff2"), url("font/context-menu-icons.woff?3a3vu") format("woff"), url("font/context-menu-icons.ttf?3a3vu") format("truetype");
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");
5959
}
6060

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

dist/jquery.contextMenu.js

Lines changed: 3 additions & 4 deletions
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-03T15:10:38.606Z
14+
* Date: 2017-04-03T15:28:34.533Z
1515
*/
1616

1717
// jscs:disable
@@ -448,7 +448,6 @@
448448
offset;
449449

450450
e.preventDefault();
451-
e.stopImmediatePropagation();
452451

453452
setTimeout(function () {
454453
var $window;
@@ -469,13 +468,13 @@
469468
sel.removeAllRanges();
470469
sel.addRange(range);
471470
}
472-
471+
$(target).trigger(e);
473472
root.$layer.show();
474473
}
475474

476475
if (root.reposition && triggerAction) {
477476
if (document.elementFromPoint) {
478-
if (root.$trigger.is(target) || root.$trigger.has(target).length) {
477+
if (root.$trigger.is(target)) {
479478
root.position.call(root.$trigger, root, x, y);
480479
return;
481480
}

dist/jquery.contextMenu.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)