Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 Use of this source code is governed by a BSD-style license that can be | |
| 3 found in the LICENSE file. --> | |
| 4 <!DOCTYPE html> | |
| 5 <html> | |
| 6 <head> | |
| 7 <title>Switch Access Options</title> | |
| 8 <link href="options.css" rel="stylesheet" type="text/css"> | |
| 9 </head> | |
| 10 <body> | |
| 11 <h1>Switch Access Options</h1> | |
| 12 <h2>Auto-Scan</h2> | |
| 13 <div> | |
| 14 <label> | |
| 15 <input id="enableAutoScan" type="checkbox"> | |
| 16 Enable auto-scan | |
| 17 </label> | |
| 18 </div> | |
| 19 <div> | |
| 20 <label id="autoScanTimeLabel"> | |
|
David Tseng
2017/03/24 18:53:11
Just fyi (for future cl), we'll have to i18n these
elichtenberg
2017/03/25 00:02:19
Good point, sounds good.
| |
| 21 <span>Set auto-scan time in seconds:</span> | |
| 22 <input id="autoScanTime" type="number" min=".05" step=".05" value="1"> | |
| 23 </label> | |
| 24 </div> | |
| 25 <script type="text/javascript" src="options.js"></script> | |
| 26 </body> | |
| 27 </html> | |
| 28 | |
| OLD | NEW |