diff options
| author | Stephen Blott | 2012-10-23 10:27:57 +0100 |
|---|---|---|
| committer | Stephen Blott | 2012-10-23 10:27:57 +0100 |
| commit | c380cb5c9c8dd786b8203d2ed10d451da2ece2b7 (patch) | |
| tree | fa449dbe4a1e98ddd68d91990ba84ab6d6638415 /options | |
| parent | 5327ac1c0dedfd9f4d30e9a0bf626f9ffb962e2d (diff) | |
| download | vimium-c380cb5c9c8dd786b8203d2ed10d451da2ece2b7.tar.bz2 | |
Code cleanup, as requested by in3/Jez Ng here:
- https://github.com/philc/vimium/pull/682.
Diffstat (limited to 'options')
| -rw-r--r-- | options/options.coffee | 2 | ||||
| -rw-r--r-- | options/options.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/options/options.coffee b/options/options.coffee index 078a931d..640b6632 100644 --- a/options/options.coffee +++ b/options/options.coffee @@ -4,7 +4,7 @@ bgSettings = chrome.extension.getBackgroundPage().Settings editableFields = [ "scrollStepSize", "excludedUrls", "linkHintCharacters", "userDefinedLinkHintCss", "keyMappings", "filterLinkHints", "previousPatterns", - "nextPatterns", "hideHud", "regexFindMode", "defaultSearchUrl"] + "nextPatterns", "hideHud", "regexFindMode", "searchUrl"] canBeEmptyFields = ["excludedUrls", "keyMappings", "userDefinedLinkHintCss"] diff --git a/options/options.html b/options/options.html index ef1267cc..3bce82ce 100644 --- a/options/options.html +++ b/options/options.html @@ -123,7 +123,7 @@ input#previousPatterns, input#nextPatterns { width: 100%; } - input#defaultSearchUrl { + input#searchUrl { width: 100%; } #status { @@ -319,7 +319,7 @@ unmapAll Vomnibar fall back URL/search engine if nothing else matches (examples: "http://duckduckgo.com/?q=", "http://www.google.com/search?q="). </div> </div> - <input id="defaultSearchUrl" type="text" /> + <input id="searchUrl" type="text" /> </td> </tr> </table> |
