瀏覽代碼

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