Pārlūkot izejas kodu

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

Thibaut Courouble 9 gadi atpakaļ
vecāks
revīzija
e6c7949b96
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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) ->