소스 검색

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

Thibaut Courouble 9 년 전
부모
커밋
e6c7949b96
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) ->