overleaf/services/web/frontend/js/features/hotkeys-modal/controllers/hotkeys-modal-controller.js
Alf Eaton 1ebc8a79cb Merge pull request #3495 from overleaf/ae-prettier-2
Upgrade Prettier to v2

GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
2021-04-15 02:05:22 +00:00

26 lines
665 B
JavaScript

import App from '../../../base'
import { react2angular } from 'react2angular'
import HotkeysModal from '../components/hotkeys-modal'
App.component('hotkeysModal', react2angular(HotkeysModal, undefined))
export default App.controller('HotkeysModalController', function ($scope) {
$scope.show = false
$scope.isMac = /Mac/i.test(navigator.platform)
$scope.handleHide = () => {
$scope.$applyAsync(() => {
$scope.show = false
})
}
$scope.openHotkeysModal = () => {
$scope.$applyAsync(() => {
$scope.trackChangesVisible =
$scope.project && $scope.project.features.trackChangesVisible
$scope.show = true
})
}
})