浏览代码

Fix Content#onAltRight when no link is found

Thibaut 11 年之前
父节点
当前提交
eb1141c7c0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      assets/javascripts/views/content/content.coffee

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

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