(isEnabled)
| 221 | } |
| 222 | |
| 223 | function setKeystrokeHistoryStatus(isEnabled) { |
| 224 | if (isEnabled) { |
| 225 | settings.enableKeystrokeHistory(); |
| 226 | document.getElementById("status-bar").keystrokeHistory.enable(); |
| 227 | } else { |
| 228 | settings.disableKeystrokeHistory(); |
| 229 | document.getElementById("status-bar").keystrokeHistory.disable(); |
| 230 | } |
| 231 | document.getElementById("menu-bar").isInputIndicatorEnabled = isEnabled; |
| 232 | } |
| 233 | |
| 234 | document.onload = document.getElementById("app").focus(); |
| 235 |