diff options
| author | Phil Crosby | 2013-05-07 09:31:20 -0700 |
|---|---|---|
| committer | Phil Crosby | 2013-05-07 09:31:20 -0700 |
| commit | b80be7d46ae7bd55cd6eacd2ef20751857182763 (patch) | |
| tree | e3cc17d6eabb5b0e91c76ac3857517661ebe6a44 /content_scripts/link_hints.coffee | |
| parent | 8fec3a8a1418c548a158144f7abadba27594ac32 (diff) | |
| parent | 967add12242bc2ce85ee57536a1c886ea8d56c66 (diff) | |
| download | vimium-b80be7d46ae7bd55cd6eacd2ef20751857182763.tar.bz2 | |
Merge pull request #829 from sainaen/fix_820
Replace all deprecated sendRequest() calls with new sendMessage() ones
Diffstat (limited to 'content_scripts/link_hints.coffee')
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 30dd98a4..302acaac 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -91,7 +91,7 @@ LinkHints = else if @mode is COPY_LINK_URL HUD.show("Copy link URL to Clipboard") @linkActivator = (link) -> - chrome.extension.sendRequest({handler: "copyToClipboard", data: link.href}) + chrome.extension.sendMessage({handler: "copyToClipboard", data: link.href}) else if @mode is OPEN_INCOGNITO HUD.show("Open link in incognito window") |
