search shortcut changed to ctrl-opt-f(ctrl-alt-f)

This commit is contained in:
tinkoff-dwh 2017-07-27 09:45:19 +03:00
parent 787e035754
commit 231018143f
2 changed files with 2 additions and 2 deletions

View file

@ -1452,7 +1452,7 @@ function ParagraphCtrl ($scope, $rootScope, $route, $window, $routeParams, $loca
$scope.clearParagraphOutput($scope.paragraph)
} else if (keyEvent.ctrlKey && keyEvent.altKey && keyCode === 87) { // Ctrl + Alt + w
$scope.goToSingleParagraph()
} else if (keyEvent.ctrlKey && keyCode === 70) { // Ctrl + f
} else if (keyEvent.ctrlKey && keyEvent.altKey && keyCode === 70) { // Ctrl + f
$scope.$emit('toggleSearchBox')
} else {
noShortcutDefined = true

View file

@ -312,7 +312,7 @@ limitations under the License.
</td>
<td>
<div class="keys">
<kbd class="kbd-default">Ctrl</kbd> + <kbd class="kbd-default">F</kbd>
<kbd class="kbd-default">Ctrl</kbd> + <kbd class="kbd-default">{{ isMac ? 'Option' : 'Alt'}}</kbd> + <kbd class="kbd-default">F</kbd>
</div>
</td>
</tr>