aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJez Ng2012-07-03 23:52:31 -0700
committerJez Ng2012-07-03 23:52:31 -0700
commitd8224394201c6d80f82d5b133531aeef7d44d74e (patch)
tree87cdec1435fa5662bc784b08d58624f6f278d215
parentb6ba1c4979877adae005dc61945abf6f965376e9 (diff)
parentf4349d735075088b204612f1d133f510dc8d5f2c (diff)
downloadvimium-d8224394201c6d80f82d5b133531aeef7d44d74e.tar.bz2
Merge pull request #564 from daz/master
Use block strings for more readable settings.
-rw-r--r--background_scripts/settings.coffee37
1 files changed, 22 insertions, 15 deletions
diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee
index 3b80dba6..af0f8f16 100644
--- a/background_scripts/settings.coffee
+++ b/background_scripts/settings.coffee
@@ -8,21 +8,28 @@ Settings =
filterLinkHints: false
hideHud: false
userDefinedLinkHintCss:
- "div > .vimiumHintMarker {" + "\n" +
- "/* linkhint boxes */ " + "\n" +
- "background-color: yellow;" + "\n" +
- "border: 1px solid #E3BE23;" + "\n" +
- "}" + "\n\n" +
- "div > .vimiumHintMarker span {" + "\n" +
- "/* linkhint text */ " + "\n" +
- "color: black;" + "\n" +
- "font-weight: bold;" + "\n" +
- "font-size: 12px;" + "\n" +
- "}" + "\n\n" +
- "div > .vimiumHintMarker > .matchingCharacter {" + "\n" +
- "}"
- excludedUrls: "http*://mail.google.com/*\n" +
- "http*://www.google.com/reader/*\n"
+ """
+ div > .vimiumHintMarker {
+ /* linkhint boxes */
+ background-color: yellow;
+ border: 1px solid #E3BE23;
+ }
+
+ div > .vimiumHintMarker span {
+ /* linkhint text */
+ color: black;
+ font-weight: bold;
+ font-size: 12px;
+ }
+
+ div > .vimiumHintMarker > .matchingCharacter {
+ }
+ """
+ excludedUrls:
+ """
+ http*://mail.google.com/*
+ http*://www.google.com/reader/*
+ """
# NOTE : If a page contains both a single angle-bracket link and a double angle-bracket link, then in
# most cases the single bracket link will be "prev/next page" and the double bracket link will be