diff options
| author | Stephen Blott | 2012-10-21 13:13:07 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2012-10-21 13:13:07 +0100 | 
| commit | 25ebcf13c2510c20caa52d230abbb29a3e91459b (patch) | |
| tree | 7eafd864a2208b7459537ce4e9a6334dccfaed11 /options/options.coffee | |
| parent | ac67f18dc08174b0460df94151e09ec21a6b56c9 (diff) | |
| download | vimium-25ebcf13c2510c20caa52d230abbb29a3e91459b.tar.bz2 | |
Configurable vomnibox default/fallback search engine.
Diffstat (limited to 'options/options.coffee')
| -rw-r--r-- | options/options.coffee | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/options/options.coffee b/options/options.coffee index 27b08e38..078a931d 100644 --- a/options/options.coffee +++ b/options/options.coffee @@ -2,8 +2,9 @@ $ = (id) -> document.getElementById id  bgSettings = chrome.extension.getBackgroundPage().Settings -editableFields = ["scrollStepSize", "excludedUrls", "linkHintCharacters", "userDefinedLinkHintCss", -  "keyMappings", "filterLinkHints", "previousPatterns", "nextPatterns", "hideHud", "regexFindMode"] +editableFields = [ "scrollStepSize", "excludedUrls", "linkHintCharacters", +  "userDefinedLinkHintCss", "keyMappings", "filterLinkHints", "previousPatterns", +  "nextPatterns", "hideHud", "regexFindMode", "defaultSearchUrl"]  canBeEmptyFields = ["excludedUrls", "keyMappings", "userDefinedLinkHintCss"] | 
