Fix alt+f shortcut when there are empty links on the page

pull/406/head
Thibaut Courouble 9 years ago
parent 6d36b339e0
commit e6c7949b96

@ -157,7 +157,7 @@ class app.views.Content extends app.View
onAltF: (event) =>
unless document.activeElement and $.hasChild @el, document.activeElement
@findByTag('a')?.focus()
@find('a:not(:empty)')?.focus()
$.stopEvent(event)
findTargetByHash: (hash) ->

Loading…
Cancel
Save