Browse Source

Fix Content#onAltRight when no link is found

Thibaut 11 years ago
parent
commit
eb1141c7c0
1 changed files with 1 additions and 1 deletions
  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) =>
   onAltRight: (event) =>
     unless document.activeElement and $.hasChild @el, document.activeElement
     unless document.activeElement and $.hasChild @el, document.activeElement
-      @findByTag('a').focus()
+      @findByTag('a')?.focus()
       $.stopEvent(event)
       $.stopEvent(event)
 
 
   findTargetByHash: (hash) ->
   findTargetByHash: (hash) ->