Skip to content

Commit 2c2ae56

Browse files
committed
Add change to changelog and update version.
1 parent bbe9433 commit 2c2ae56

9 files changed

+25
-102
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog ##
22

3+
### 2.9.2
4+
5+
* Fix reflow when adding click layer to page (fixed #721, thanks @Rhain)
6+
37
### 2.9.1
48

59
* Fix error when closing the menu by clicking on the page without any element under that click point. (fixes #717)

dist/jquery.contextMenu.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*!
33
* jQuery contextMenu - Plugin for simple contextMenu handling
44
*
5-
* Version: v2.9.0
5+
* Version: v2.9.2
66
*
77
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
88
* Web: http://swisnl.github.io/jQuery-contextMenu/
@@ -12,7 +12,7 @@
1212
* Licensed under
1313
* MIT License http://www.opensource.org/licenses/mit-license
1414
*
15-
* Date: 2020-05-06T18:55:06.258Z
15+
* Date: 2020-05-13T13:55:37.023Z
1616
*/
1717
@-webkit-keyframes cm-spin {
1818
0% {

dist/jquery.contextMenu.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* jQuery contextMenu v2.9.0 - Plugin for simple contextMenu handling
2+
* jQuery contextMenu v2.9.2 - Plugin for simple contextMenu handling
33
*
4-
* Version: v2.9.0
4+
* Version: v2.9.2
55
*
66
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
77
* Web: http://swisnl.github.io/jQuery-contextMenu/
@@ -11,7 +11,7 @@
1111
* Licensed under
1212
* MIT License http://www.opensource.org/licenses/mit-license
1313
*
14-
* Date: 2020-05-06T18:55:06.721Z
14+
* Date: 2020-05-13T13:55:36.983Z
1515
*/
1616

1717
// jscs:disable
@@ -1505,15 +1505,15 @@
15051505
width: $win.width(),
15061506
display: 'block',
15071507
position: 'fixed',
1508-
'z-index': zIndex,
1508+
'z-index': zIndex - 1,
15091509
top: 0,
15101510
left: 0,
15111511
opacity: 0,
15121512
filter: 'alpha(opacity=0)',
15131513
'background-color': '#000'
15141514
})
15151515
.data('contextMenuRoot', opt)
1516-
.insertBefore(this)
1516+
.appendTo(document.body)
15171517
.on('contextmenu', handle.abortevent)
15181518
.on('mousedown', handle.layerClick);
15191519

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)