aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJez Ng2013-03-06 05:45:16 -0500
committerJez Ng2013-03-06 05:45:16 -0500
commit8fec3a8a1418c548a158144f7abadba27594ac32 (patch)
treebb90c4d7ef6948756ddf48754de49499c1067d6e
parent25c871c9bfc15278d72b9d0b2821b92627a605c6 (diff)
downloadvimium-8fec3a8a1418c548a158144f7abadba27594ac32.tar.bz2
Shorten names.
-rw-r--r--background_scripts/commands.coffee4
-rw-r--r--background_scripts/main.coffee4
-rw-r--r--content_scripts/link_hints.coffee8
3 files changed, 8 insertions, 8 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index 5614e576..81329062 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -110,7 +110,7 @@ Commands =
advancedCommands: [
"scrollToLeft", "scrollToRight", "moveTabToNewWindow",
"goUp", "goToRoot", "focusInput", "LinkHints.activateModeWithQueue",
- "LinkHints.activateModeToOpenIncognitoWindow", "goNext", "Marks.activateCreateMode", "Marks.activateGotoMode"]
+ "LinkHints.activateModeToOpenIncognito", "goNext", "Marks.activateCreateMode", "Marks.activateGotoMode"]
defaultKeyMappings =
"?": "showHelp"
@@ -217,7 +217,7 @@ commandDescriptions =
'LinkHints.activateModeToOpenInNewTab': ["Open a link in a new tab"]
'LinkHints.activateModeWithQueue': ["Open multiple links in a new tab"]
- "LinkHints.activateModeToOpenIncognitoWindow": ["Open a link in incognito window"]
+ "LinkHints.activateModeToOpenIncognito": ["Open a link in incognito window"]
enterFindMode: ["Enter find mode"]
performFind: ["Cycle forward to the next find match"]
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 3e6f2dad..c750162e 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -168,7 +168,7 @@ openUrlInNewTab = (request) ->
chrome.tabs.getSelected(null, (tab) ->
chrome.tabs.create({ url: Utils.convertToUrl(request.url), index: tab.index + 1, selected: true }))
-openUrlInIncognitoWindow = (request) ->
+openUrlInIncognito = (request) ->
chrome.windows.create({ url: Utils.convertToUrl(request.url), incognito: true})
#
@@ -564,7 +564,7 @@ sendRequestHandlers =
getCompletionKeys: getCompletionKeysRequest,
getCurrentTabUrl: getCurrentTabUrl,
openUrlInNewTab: openUrlInNewTab,
- openUrlInIncognitoWindow: openUrlInIncognitoWindow,
+ openUrlInIncognito: openUrlInIncognito,
openUrlInCurrentTab: openUrlInCurrentTab,
openOptionsPageInNewTab: openOptionsPageInNewTab,
registerFrame: registerFrame,
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index ad4a2686..30dd98a4 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -12,7 +12,7 @@ OPEN_IN_CURRENT_TAB = {}
OPEN_IN_NEW_TAB = {}
OPEN_WITH_QUEUE = {}
COPY_LINK_URL = {}
-OPEN_INCOGNITO_WINDOW = {}
+OPEN_INCOGNITO = {}
LinkHints =
hintMarkerContainingDiv: null
@@ -49,7 +49,7 @@ LinkHints =
activateModeToOpenInNewTab: -> @activateMode(OPEN_IN_NEW_TAB)
activateModeToCopyLinkUrl: -> @activateMode(COPY_LINK_URL)
activateModeWithQueue: -> @activateMode(OPEN_WITH_QUEUE)
- activateModeToOpenIncognitoWindow: -> @activateMode(OPEN_INCOGNITO_WINDOW)
+ activateModeToOpenIncognito: -> @activateMode(OPEN_INCOGNITO)
activateMode: (mode = OPEN_IN_CURRENT_TAB) ->
# we need documentElement to be ready in order to append links
@@ -92,12 +92,12 @@ LinkHints =
HUD.show("Copy link URL to Clipboard")
@linkActivator = (link) ->
chrome.extension.sendRequest({handler: "copyToClipboard", data: link.href})
- else if @mode is OPEN_INCOGNITO_WINDOW
+ else if @mode is OPEN_INCOGNITO
HUD.show("Open link in incognito window")
@linkActivator = (link) ->
chrome.extension.sendMessage(
- handler: 'openUrlInIncognitoWindow'
+ handler: 'openUrlInIncognito'
url: link.href)
else # OPEN_IN_CURRENT_TAB
HUD.show("Open link in current tab")