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

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
djl committed Jul 18, 2011
1 parent 99d7f9d commit d7b9c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chrome/content/gotourl.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var gotoURL = {

go: function(where) {
var focusedWindow = document.commandDispatcher.focusedWindow;
var url = focusedWindow.getSelection();
var url = gContextMenu.onLink ? gContextMenu.target.href : focusedWindow.getSelection();

switch(where) {
case "current":
Expand Down

0 comments on commit d7b9c0e

Please sign in to comment.