mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
e035d526d6
Restructure frontend directories GitOrigin-RevId: 5a1224ca186f4809df45680a80d374c1c318d7bf
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
max-len,
|
|
no-return-assign,
|
|
no-undef,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
define(['base', 'ace/ace'], function(App) {
|
|
App.controller(
|
|
'HotkeysController',
|
|
($scope, $modal, eventTracking) =>
|
|
($scope.openHotkeysModal = function() {
|
|
eventTracking.sendMB('ide-open-hotkeys-modal')
|
|
|
|
return $modal.open({
|
|
templateUrl: 'hotkeysModalTemplate',
|
|
controller: 'HotkeysModalController',
|
|
size: 'lg',
|
|
resolve: {
|
|
trackChangesVisible() {
|
|
return $scope.project.features.trackChangesVisible
|
|
}
|
|
}
|
|
})
|
|
})
|
|
)
|
|
|
|
return App.controller('HotkeysModalController', function(
|
|
$scope,
|
|
$modalInstance,
|
|
trackChangesVisible
|
|
) {
|
|
$scope.trackChangesVisible = trackChangesVisible
|
|
if (ace.require('ace/lib/useragent').isMac) {
|
|
$scope.ctrl = 'Cmd'
|
|
} else {
|
|
$scope.ctrl = 'Ctrl'
|
|
}
|
|
|
|
return ($scope.cancel = () => $modalInstance.dismiss())
|
|
})
|
|
})
|