mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
optimise common case for closing context menu (triggered on scroll)
This commit is contained in:
parent
e62a2c7a6f
commit
5244fddce2
1 changed files with 5 additions and 2 deletions
|
@ -86,8 +86,11 @@ define [
|
||||||
return false
|
return false
|
||||||
|
|
||||||
closeContextMenu: (e) ->
|
closeContextMenu: (e) ->
|
||||||
@$scope.$apply () =>
|
# this is triggered on scroll, so for performance only apply
|
||||||
@$scope.spellingMenu.open = false
|
# setting when it changes
|
||||||
|
if @$scope?.spellingMenu?.open != false
|
||||||
|
@$scope.$apply () =>
|
||||||
|
@$scope.spellingMenu.open = false
|
||||||
|
|
||||||
replaceWord: (highlight, text) ->
|
replaceWord: (highlight, text) ->
|
||||||
@editor.getSession().replace(new Range(
|
@editor.getSession().replace(new Range(
|
||||||
|
|
Loading…
Reference in a new issue