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
22 lines
690 B
JavaScript
22 lines
690 B
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-return-assign,
|
|
*/
|
|
// 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
|
|
*/
|
|
import App from '../../../base'
|
|
|
|
export default App.controller(
|
|
'BulkActionsModalController',
|
|
function ($scope, $modalInstance, isAccept, nChanges) {
|
|
$scope.isAccept = isAccept
|
|
$scope.nChanges = nChanges
|
|
$scope.cancel = () => $modalInstance.dismiss()
|
|
return ($scope.confirm = () => $modalInstance.close(isAccept))
|
|
}
|
|
)
|