aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/link_hints.coffee21
1 files changed, 14 insertions, 7 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 57fec611..45145d49 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -10,13 +10,20 @@
#
# The "name" property below is a short-form name to appear in the link-hints mode's name. It's for debug only.
#
-OPEN_IN_CURRENT_TAB = name: "curr-tab"
-OPEN_IN_NEW_BG_TAB = name: "bg-tab"
-OPEN_IN_NEW_FG_TAB = name: "fg-tab"
-OPEN_WITH_QUEUE = name: "queue"
-COPY_LINK_URL = name: "link"
-OPEN_INCOGNITO = name: "incognito"
-DOWNLOAD_LINK_URL = name: "download"
+OPEN_IN_CURRENT_TAB =
+ name: "curr-tab"
+OPEN_IN_NEW_BG_TAB =
+ name: "bg-tab"
+OPEN_IN_NEW_FG_TAB =
+ name: "fg-tab"
+OPEN_WITH_QUEUE =
+ name: "queue"
+COPY_LINK_URL =
+ name: "link"
+OPEN_INCOGNITO =
+ name: "incognito"
+DOWNLOAD_LINK_URL =
+ name: "download"
LinkHints =
activateMode: (count = 1, mode = OPEN_IN_CURRENT_TAB) ->