Skip to content

Commit

Permalink
Remove non-ASCII character from comment to fix encoding issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick authored and Nick committed Jan 20, 2012
1 parent e49d7d8 commit 639c2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.contextMenu.js
Expand Up @@ -721,7 +721,7 @@ var // currently active contextMenu trigger
// mouse position handler
$(document).on('mousemove.contextMenuAutoHide', function(e) {
if (opt.$layer && !opt.hovering && (!(e.pageX >= pos.left && e.pageX <= pos.right) || !(e.pageY >= pos.top && e.pageY <= pos.bottom))) {
// if mouse in menu...¦
// if mouse in menu...
opt.$layer.trigger('mousedown');
}
});
Expand Down

0 comments on commit 639c2ac

Please sign in to comment.