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

Side by Side Diff: chrome/browser/resources/options/chromeos_language_customize_modifier_keys_overlay.html

Issue 6250032: Correct the dataType of the modifiers key settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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
1 <div class="page hidden" id="languageCustomizeModifierKeysOverlay"> 1 <div class="page hidden" id="languageCustomizeModifierKeysOverlay">
2 <div class="content-area"> 2 <div class="content-area">
3 <table class="option-control-table"> 3 <table class="option-control-table">
4 <tr> 4 <tr>
5 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent"></td> 5 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent"></td>
6 <td class="option-value"> 6 <td class="option-value">
7 <select id="xkb-remap-search-key-to" class="control" 7 <select id="xkb-remap-search-key-to" class="control"
8 pref="settings.language.xkb_remap_search_key_to" 8 pref="settings.language.xkb_remap_search_key_to"
9 dataType="string" 9 dataType="number"
10 i18n-options="xkbRemapSearchKeyToValue"></select> 10 i18n-options="xkbRemapSearchKeyToValue"></select>
11 </td> 11 </td>
12 </tr> 12 </tr>
13 <tr> 13 <tr>
14 <td class="option-name" 14 <td class="option-name"
15 i18n-content="xkbRemapControlKeyToContent"></td> 15 i18n-content="xkbRemapControlKeyToContent"></td>
16 <td class="option-value"> 16 <td class="option-value">
17 <select id="xkb-remap-control-key-to" class="control" 17 <select id="xkb-remap-control-key-to" class="control"
18 pref="settings.language.xkb_remap_control_key_to" 18 pref="settings.language.xkb_remap_control_key_to"
19 dataType="string" 19 dataType="number"
20 i18n-options="xkbRemapControlKeyToValue"></select> 20 i18n-options="xkbRemapControlKeyToValue"></select>
21 </td> 21 </td>
22 </tr> 22 </tr>
23 <tr> 23 <tr>
24 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td> 24 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
25 <td class="option-value"> 25 <td class="option-value">
26 <select id="xkb-remap-alt-key-to" class="control" 26 <select id="xkb-remap-alt-key-to" class="control"
27 pref="settings.language.xkb_remap_alt_key_to" 27 pref="settings.language.xkb_remap_alt_key_to"
28 dataType="string" 28 dataType="number"
29 i18n-options="xkbRemapAltKeyToValue"></select> 29 i18n-options="xkbRemapAltKeyToValue"></select>
30 </td> 30 </td>
31 </tr> 31 </tr>
32 </table> 32 </table>
33 </div> 33 </div>
34 <div class="action-area"> 34 <div class="action-area">
35 <div class="button-strip"> 35 <div class="button-strip">
36 <button id="languageCustomizeModifierKeysOverleyDismissButton" 36 <button id="languageCustomizeModifierKeysOverleyDismissButton"
37 i18n-content="close" 37 i18n-content="close"
38 onclick="OptionsPage.clearOverlays();"></button> 38 onclick="OptionsPage.clearOverlays();"></button>
39 </div> 39 </div>
40 </div> 40 </div>
41 </div> 41 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698