aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
authorJez Ng2012-03-03 01:13:36 -0500
committerJez Ng2012-03-06 08:43:10 -0500
commit08c1402cc46ddd386fde0744c039cf2354982cbb (patch)
tree231069ebb8aeba2db1828d1a6c4e779078936e89 /background_page.html
parentbbc274abc1107557269eb729feeed3706287f190 (diff)
downloadvimium-08c1402cc46ddd386fde0744c039cf2354982cbb.tar.bz2
Clean up link copying code.
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html8
1 files changed, 0 insertions, 8 deletions
diff --git a/background_page.html b/background_page.html
index aca4206b..aed9617b 100644
--- a/background_page.html
+++ b/background_page.html
@@ -40,7 +40,6 @@
upgradeNotificationClosed: upgradeNotificationClosed,
updateScrollPosition: handleUpdateScrollPosition,
copyToClipboard: copyToClipboard,
- copyLinkUrl: copyLinkUrl,
isEnabledForUrl: isEnabledForUrl,
saveHelpDialogSettings: saveHelpDialogSettings
};
@@ -211,13 +210,6 @@
});
}
- /**
- * Copies url of selected link to the clipboard (wget ftw)
- */
- function copyLinkUrl(request) {
- Clipboard.copy(request.data);
- }
-
function openCopiedUrlInCurrentTab(request) {
openUrlInCurrentTab({ url: utils.ensureUrl(Clipboard.paste()) });
}