Ver Fonte

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

Thibaut Courouble há 9 anos atrás
pai
commit
e6c7949b96
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      assets/javascripts/views/content/content.coffee

+ 1 - 1
assets/javascripts/views/content/content.coffee

@@ -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) ->