aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.js
diff options
context:
space:
mode:
authorJez Ng2012-08-04 13:16:14 -0700
committerJez Ng2012-08-04 13:18:26 -0700
commit6043f25b8dcbba3a522df4ddf59e1070fdc134e5 (patch)
treed4ed7657f74150e0295577a13e8c7ad512024bb3 /background_scripts/main.js
parentee8ec26a6b4f3996bd94903b435ecafd30648c2d (diff)
downloadvimium-6043f25b8dcbba3a522df4ddf59e1070fdc134e5.tar.bz2
linkHintCss should be accessed via settings. Closes #605.
Diffstat (limited to 'background_scripts/main.js')
-rw-r--r--background_scripts/main.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/background_scripts/main.js b/background_scripts/main.js
index 49790b87..4dc11181 100644
--- a/background_scripts/main.js
+++ b/background_scripts/main.js
@@ -24,7 +24,6 @@ var portHandlers = {
var sendRequestHandlers = {
getCompletionKeys: getCompletionKeysRequest,
- getLinkHintCss: getLinkHintCss,
openUrlInNewTab: openUrlInNewTab,
openUrlInCurrentTab: openUrlInCurrentTab,
openOptionsPageInNewTab: openOptionsPageInNewTab,
@@ -239,13 +238,6 @@ function openCopiedUrlInCurrentTab(request) { openUrlInCurrentTab({ url: Clipboa
function openCopiedUrlInNewTab(request) { openUrlInNewTab({ url: Clipboard.paste() }); }
/*
- * Returns the user-provided CSS overrides.
- */
-function getLinkHintCss(request) {
- return { linkHintCss: (Settings.get("userDefinedLinkHintCss") || "") };
-}
-
-/*
* Called when the user has clicked the close icon on the "Vimium has been updated" message.
* We should now dismiss that message in all tabs.
*/