Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #639 from abbeyj/link-bounding-box
Browse files Browse the repository at this point in the history
Fix popup menu not showing up when clicking on the far right side
  • Loading branch information
erikrose committed Feb 10, 2017
2 parents bc18279 + 0586e1c commit 61af6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dxr/static_unhashed/js/context_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ $(function() {
}

// If the offset is beyond the last word, no word was clicked on.
if (offset === endIndex) {
if (offset > endIndex) {
return;
}

Expand Down

0 comments on commit 61af6a8

Please sign in to comment.