Explorar o código

Fix Content#onAltRight when no link is found

Thibaut %!s(int64=11) %!d(string=hai) anos
pai
achega
eb1141c7c0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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) ->