diff options
| author | sainaen | 2013-05-06 22:13:00 +0300 |
|---|---|---|
| committer | sainaen | 2013-05-06 22:42:24 +0300 |
| commit | 9403692e5115c780fc5b55dfdfa7b0e5fa4c2372 (patch) | |
| tree | 93a9bb9cb445d3e0e363afc4e4db9262e345c18e /content_scripts/link_hints.coffee | |
| parent | 8fec3a8a1418c548a158144f7abadba27594ac32 (diff) | |
| download | vimium-9403692e5115c780fc5b55dfdfa7b0e5fa4c2372.tar.bz2 | |
Replace all deprecated sendRequest() calls with new sendMessage()
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") |
