| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview ChromeVox braille commands. | 6 * @fileoverview ChromeVox braille commands. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 goog.provide('BrailleCommandHandler'); | 9 goog.provide('BrailleCommandHandler'); |
| 10 | 10 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 // Question. | 135 // Question. |
| 136 map([1, 4, 5, 6], 'toggleKeyboardHelp'); | 136 map([1, 4, 5, 6], 'toggleKeyboardHelp'); |
| 137 | 137 |
| 138 // All cells (with 7 as mod). | 138 // All cells (with 7 as mod). |
| 139 map([1, 2, 3, 4, 5, 6, 7], 'darkenScreen'); | 139 map([1, 2, 3, 4, 5, 6, 7], 'darkenScreen'); |
| 140 map([1, 2, 3, 4, 5, 6], 'undarkenScreen'); | 140 map([1, 2, 3, 4, 5, 6], 'undarkenScreen'); |
| 141 | 141 |
| 142 // s. | 142 // s. |
| 143 map([2, 3, 4], 'toggleSpeechOnOrOff'); | 143 map([2, 3, 4], 'toggleSpeechOnOrOff'); |
| 144 |
| 145 // g. |
| 146 map([1, 2, 4, 5], 'toggleBrailleTable'); |
| 144 }; | 147 }; |
| 145 | 148 |
| 146 BrailleCommandHandler.init_(); | 149 BrailleCommandHandler.init_(); |
| 147 | 150 |
| 148 }); // goog.scope | 151 }); // goog.scope |
| OLD | NEW |