| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 6 <link rel="import" href="/controls/settings_checkbox.html"> | 6 <link rel="import" href="/controls/settings_checkbox.html"> |
| 7 <link rel="import" href="/controls/settings_dropdown_menu.html"> | 7 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 8 <link rel="import" href="/i18n_setup.html"> | 8 <link rel="import" href="/i18n_setup.html"> |
| 9 <link rel="import" href="/settings_shared_css.html"> | 9 <link rel="import" href="/settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 value="{{prefs.settings.language.xkb_auto_repeat_interval_r2.value
}}" | 86 value="{{prefs.settings.language.xkb_auto_repeat_interval_r2.value
}}" |
| 87 tick-values="[[autoRepeatIntervals_]]" | 87 tick-values="[[autoRepeatIntervals_]]" |
| 88 disabled="[[!prefs.settings.language.xkb_auto_repeat_enabled_r2.va
lue]]" | 88 disabled="[[!prefs.settings.language.xkb_auto_repeat_enabled_r2.va
lue]]" |
| 89 aria-labelledby="repeatRateLabel"> | 89 aria-labelledby="repeatRateLabel"> |
| 90 </cr-slider> | 90 </cr-slider> |
| 91 <div>$i18n{keyRepeatRateFast}</div> | 91 <div>$i18n{keyRepeatRateFast}</div> |
| 92 </div> | 92 </div> |
| 93 </div> | 93 </div> |
| 94 </iron-collapse> | 94 </iron-collapse> |
| 95 <div id="keyboardOverlay" class="settings-box" | 95 <div id="keyboardOverlay" class="settings-box" |
| 96 on-tap="onShowKeyboardShortcutsOverlayTap_"> | 96 on-tap="onShowKeyboardShortcutsOverlayTap_" actionable> |
| 97 $i18n{showKeyboardShortcutsOverlay} | 97 $i18n{showKeyboardShortcutsOverlay} |
| 98 </div> | 98 </div> |
| 99 <div class="settings-box" on-tap="onShowLanguageInputTap_"> | 99 <div class="settings-box" on-tap="onShowLanguageInputTap_" actionable> |
| 100 $i18n{keyboardShowLanguageAndInput} | 100 $i18n{keyboardShowLanguageAndInput} |
| 101 </div> | 101 </div> |
| 102 </template> | 102 </template> |
| 103 <script src="keyboard.js"></script> | 103 <script src="keyboard.js"></script> |
| 104 </dom-module> | 104 </dom-module> |
| OLD | NEW |