Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2797)

Unified Diff: chrome/browser/resources/chromeos/switch_access/options.html

Issue 2760453002: Creating options page and storing preferences. (Closed)
Patch Set: Fixed closure compiler error Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/switch_access/options.html
diff --git a/chrome/browser/resources/chromeos/switch_access/options.html b/chrome/browser/resources/chromeos/switch_access/options.html
new file mode 100644
index 0000000000000000000000000000000000000000..c2c130fa37ca4c354dbea9f20a8755bf4a03507f
--- /dev/null
+++ b/chrome/browser/resources/chromeos/switch_access/options.html
@@ -0,0 +1,28 @@
+<!-- Copyright 2017 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Switch Access Options</title>
+ <link href="options.css" rel="stylesheet" type="text/css">
+</head>
+<body>
+ <h1>Switch Access Options</h1>
+ <h2>Auto-Scan</h2>
+ <div>
+ <label>
+ <input id="enableAutoScan" type="checkbox">
+ Enable auto-scan
+ </label>
+ </div>
+ <div>
+ <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.
+ <span>Set auto-scan time in seconds:</span>
+ <input id="autoScanTime" type="number" min=".05" step=".05" value="1">
+ </label>
+ </div>
+ <script type="text/javascript" src="options.js"></script>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698