🐛 Use fat arrow to capture correct scope

Fixes #9187
This commit is contained in:
Thomas Johansen
2015-10-17 16:54:29 +02:00
parent 306729f20c
commit 2cb77aa4b9

View File

@@ -174,7 +174,7 @@ class WindowEventHandler
detail = "To toggle, press the Alt key or execute the window:toggle-menu-bar command"
@atomEnvironment.notifications.addInfo('Menu bar hidden', {detail})
handleLinkClick: (event) ->
handleLinkClick: (event) =>
event.preventDefault()
uri = event.currentTarget?.getAttribute('href')
if uri and uri[0] isnt '#' and /^https?:\/\//.test(uri)