Skip to content

Commit f59561b

Browse files
committed
release 2.0.1
1 parent fd72077 commit f59561b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+52
-52
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Font-Awesome icons used from [encharm/Font-Awesome-SVG-PNG](https://github.com/e
103103

104104
## Changelog ##
105105

106-
### Unreleased ###
106+
### 2.0.1 (December 3rd 2015 ###
107107

108108
* Remove executable bit from jquery.contextMenu.js (thanks @jacknagel)
109109
* Fixed a problem there was when using a function for icons (thanks @RareDevil)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jQuery-contextMenu",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"main": [
55
"dist/jquery.contextMenu.js",
66
"dist/jquery.contextMenu.min.js",

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

4 Bytes
Binary file not shown.

dist/jquery.contextMenu.css

Lines changed: 4 additions & 4 deletions
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.0.0
5+
* Version: v2.0.1
66
*
77
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
88
* Web: http://swisnl.github.io/jQuery-contextMenu/
@@ -12,15 +12,15 @@
1212
* Licensed under
1313
* MIT License http://www.opensource.org/licenses/mit-license
1414
*
15-
* Date: 2015-11-16T21:31:33.969Z
15+
* Date: 2015-12-03T20:06:17.381Z
1616
*/
1717
@font-face {
1818
font-family: "context-menu-icons";
1919
font-style: normal;
2020
font-weight: normal;
2121

22-
src: url("font/context-menu-icons.eot?4kdwx");
23-
src: url("font/context-menu-icons.eot?4kdwx#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?4kdwx") format("woff2"), url("font/context-menu-icons.woff?4kdwx") format("woff"), url("font/context-menu-icons.ttf?4kdwx") format("truetype");
22+
src: url("font/context-menu-icons.eot?y1c4");
23+
src: url("font/context-menu-icons.eot?y1c4#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?y1c4") format("woff2"), url("font/context-menu-icons.woff?y1c4") format("woff"), url("font/context-menu-icons.ttf?y1c4") format("truetype");
2424
}
2525

2626
.context-menu-icon-add:before, .context-menu-icon-copy:before, .context-menu-icon-cut:before, .context-menu-icon-delete:before, .context-menu-icon-edit:before, .context-menu-icon-paste:before, .context-menu-icon-quit:before {

dist/jquery.contextMenu.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* jQuery contextMenu v2.0.0 - Plugin for simple contextMenu handling
2+
* jQuery contextMenu v2.0.1 - Plugin for simple contextMenu handling
33
*
4-
* Version: v2.0.0
4+
* Version: v2.0.1
55
*
66
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
77
* Web: http://swisnl.github.io/jQuery-contextMenu/
@@ -12,7 +12,7 @@
1212
* MIT License http://www.opensource.org/licenses/mit-license
1313
* GPL v3 http://opensource.org/licenses/GPL-3.0
1414
*
15-
* Date: 2015-11-28T12:12:18.532Z
15+
* Date: 2015-12-03T20:06:18.619Z
1616
*/
1717

1818
(function (factory) {
@@ -439,7 +439,7 @@
439439
var triggerAction = ((root.trigger === 'left' && button === 0) || (root.trigger === 'right' && button === 2));
440440

441441
// find the element that would've been clicked, wasn't the layer in the way
442-
if (document.elementFromPoint) {
442+
if (document.elementFromPoint && root.$layer) {
443443
root.$layer.hide();
444444
target = document.elementFromPoint(x - $win.scrollLeft(), y - $win.scrollTop());
445445
root.$layer.show();

dist/jquery.contextMenu.min.css

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

0 commit comments

Comments
 (0)