optimise common case for closing context menu (triggered on scroll)

This commit is contained in:
Brian Gough 2015-01-23 20:46:44 +00:00
parent e62a2c7a6f
commit 5244fddce2

View file

@ -86,6 +86,9 @@ define [
return false
closeContextMenu: (e) ->
# this is triggered on scroll, so for performance only apply
# setting when it changes
if @$scope?.spellingMenu?.open != false
@$scope.$apply () =>
@$scope.spellingMenu.open = false