diff options
Diffstat (limited to 'pages/options.html')
| -rw-r--r-- | pages/options.html | 36 | 
1 files changed, 35 insertions, 1 deletions
| diff --git a/pages/options.html b/pages/options.html index 777d514a..b14c454f 100644 --- a/pages/options.html +++ b/pages/options.html @@ -3,6 +3,7 @@      <title>Vimium Options</title>      <link rel="stylesheet" type="text/css" href="options.css">      <script src="content_script_loader.js"></script> +    <script type="text/javascript" src="../lib/settings.js"></script>      <script type="text/javascript" src="options.js"></script>    </head> @@ -68,6 +69,9 @@ b: http://b.com/?q=%s description          </tr>          <tbody id='advancedOptions'>            <tr> +            <td colspan="2"><header>Advanced Options</header></td> +          </tr> +          <tr>              <td class="caption">Scroll step size</td>              <td>                  <div class="help"> @@ -197,7 +201,7 @@ b: http://b.com/?q=%s description                  <div class="help">                    <div class="example">                        The page to open with the "create new tab" command. -                      Set this to "<tt>pages/blank.html</tt>" for a blank page.<br /> +                      Set this to "<tt>pages/blank.html</tt>" for a blank page (except incognito mode).<br />                    </div>                  </div>                  <input id="newTabUrl" type="text" /> @@ -230,6 +234,36 @@ b: http://b.com/?q=%s description                <div class="nonEmptyTextOption">              </td>            </tr> + +          <!-- Vimium Labs --> +          <!-- +          Disabled.  But we leave this code here as a template for the next time we need to introduce "Vimium Labs". +          <tr> +            <td colspan="2"><header>Vimium Labs</header></td> +          </tr> +          <tr> +            <td class="caption"></td> +            <td> +                <div class="help"> +                  <div class="example"> +                  </div> +                </div> +                These features are experimental and may be changed or removed in future releases. +            </td> +          </tr> +          <tr> +            <td class="caption">Search weighting</td> +            <td> +                <div class="help"> +                  <div class="example"> +                    How prominent should suggestions be in the vomnibar? +                    <tt>0</tt> disables suggestions altogether. +                  </div> +                </div> +              <input id="omniSearchWeight" type="number" min="0.0" max="1.0" step="0.05" />(0 to 1) +            </td> +          </tr> +          -->          </tbody>        </table>      </div> | 
