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

Unified Diff: ui/keyboard/resources/layouts/numeric.html

Issue 23927006: Added numeric layout to VK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed indentation Created 7 years, 3 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
« no previous file with comments | « ui/keyboard/resources/index.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/keyboard/resources/layouts/numeric.html
diff --git a/ui/keyboard/resources/layouts/numeric.html b/ui/keyboard/resources/layouts/numeric.html
new file mode 100644
index 0000000000000000000000000000000000000000..9b824a2d519b2f84389e67ed617692e613d27a0c
--- /dev/null
+++ b/ui/keyboard/resources/layouts/numeric.html
@@ -0,0 +1,32 @@
+<!--
+ -- Copyright 2013 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.
+ -->
+
+<link rel="import" href="../elements/kb-key-sequence.html">
+<link rel="import" href="../elements/kb-key-import.html">
+<link id="spacebar-row" rel="import" href="spacebar-row.html">
+
+<template>
+ <kb-keyset id="numeric-symbol" isDefault=true>
+ <kb-row>
+ <kb-key>1</kb-key><kb-key>2</kb-key><kb-key>3</kb-key>
+ <kb-key class="dark">-</kb-key>
+ </kb-row>
+ <kb-row>
+ <kb-key>4</kb-key><kb-key>5</kb-key><kb-key>6</kb-key>
+ <kb-key class="dark">,</kb-key>
+ </kb-row>
+ <kb-row>
+ <kb-key>7</kb-key><kb-key>8</kb-key><kb-key>9</kb-key>
+ <kb-key char="&#x0008;" repeat class="dark">backspace</kb-key>
+ </kb-row>
+ <kb-row>
+ <kb-key char=" " class="dark">space</kb-key>
+ <kb-key>0</kb-key>
+ <kb-key class="dark">.</kb-key>
+ <kb-key char="&#x0009;" class="dark">next</kb-key>
+ </kb-row>
+ </kb-keyset>
+</template>
« no previous file with comments | « ui/keyboard/resources/index.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698