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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « ui/keyboard/resources/index.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 -- Copyright 2013 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file.
5 -->
6
7 <link rel="import" href="../elements/kb-key-sequence.html">
8 <link rel="import" href="../elements/kb-key-import.html">
9 <link id="spacebar-row" rel="import" href="spacebar-row.html">
10
11 <template>
12 <kb-keyset id="numeric-symbol" isDefault=true>
13 <kb-row>
14 <kb-key>1</kb-key><kb-key>2</kb-key><kb-key>3</kb-key>
15 <kb-key class="dark">-</kb-key>
16 </kb-row>
17 <kb-row>
18 <kb-key>4</kb-key><kb-key>5</kb-key><kb-key>6</kb-key>
19 <kb-key class="dark">,</kb-key>
20 </kb-row>
21 <kb-row>
22 <kb-key>7</kb-key><kb-key>8</kb-key><kb-key>9</kb-key>
23 <kb-key char="&#x0008;" repeat class="dark">backspace</kb-key>
24 </kb-row>
25 <kb-row>
26 <kb-key char=" " class="dark">space</kb-key>
27 <kb-key>0</kb-key>
28 <kb-key class="dark">.</kb-key>
29 <kb-key char="&#x0009;" class="dark">next</kb-key>
30 </kb-row>
31 </kb-keyset>
32 </template>
OLDNEW
« 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