Skip to content

Commit

Permalink
release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrala committed Dec 3, 2015
1 parent fd72077 commit f59561b
Show file tree
Hide file tree
Showing 44 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Font-Awesome icons used from [encharm/Font-Awesome-SVG-PNG](https://github.com/e

## Changelog ##

### Unreleased ###
### 2.0.1 (December 3rd 2015 ###

* Remove executable bit from jquery.contextMenu.js (thanks @jacknagel)
* Fixed a problem there was when using a function for icons (thanks @RareDevil)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jQuery-contextMenu",
"version": "2.0.0",
"version": "2.0.1",
"main": [
"dist/jquery.contextMenu.js",
"dist/jquery.contextMenu.min.js",
Expand Down
Binary file modified dist/font/context-menu-icons.eot
Binary file not shown.
Binary file modified dist/font/context-menu-icons.ttf
Binary file not shown.
Binary file modified dist/font/context-menu-icons.woff
Binary file not shown.
Binary file modified dist/font/context-menu-icons.woff2
Binary file not shown.
8 changes: 4 additions & 4 deletions dist/jquery.contextMenu.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*!
* jQuery contextMenu - Plugin for simple contextMenu handling
*
* Version: v2.0.0
* Version: v2.0.1
*
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
* Web: http://swisnl.github.io/jQuery-contextMenu/
Expand All @@ -12,15 +12,15 @@
* Licensed under
* MIT License http://www.opensource.org/licenses/mit-license
*
* Date: 2015-11-16T21:31:33.969Z
* Date: 2015-12-03T20:06:17.381Z
*/
@font-face {
font-family: "context-menu-icons";
font-style: normal;
font-weight: normal;

src: url("font/context-menu-icons.eot?4kdwx");
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");
src: url("font/context-menu-icons.eot?y1c4");
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");
}

.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 {
Expand Down
8 changes: 4 additions & 4 deletions dist/jquery.contextMenu.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* jQuery contextMenu v2.0.0 - Plugin for simple contextMenu handling
* jQuery contextMenu v2.0.1 - Plugin for simple contextMenu handling
*
* Version: v2.0.0
* Version: v2.0.1
*
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
* Web: http://swisnl.github.io/jQuery-contextMenu/
Expand All @@ -12,7 +12,7 @@
* MIT License http://www.opensource.org/licenses/mit-license
* GPL v3 http://opensource.org/licenses/GPL-3.0
*
* Date: 2015-11-28T12:12:18.532Z
* Date: 2015-12-03T20:06:18.619Z
*/

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

// find the element that would've been clicked, wasn't the layer in the way
if (document.elementFromPoint) {
if (document.elementFromPoint && root.$layer) {
root.$layer.hide();
target = document.elementFromPoint(x - $win.scrollLeft(), y - $win.scrollTop());
root.$layer.show();
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.contextMenu.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f59561b

Please sign in to comment.