mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
26 lines
665 B
JavaScript
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
|
|
})
|
|
}
|
|
})
|