Fixes #604.
@@ -70,7 +70,7 @@ class app.views.SearchScope extends app.View
redirectToDoc: (doc) ->
hash = location.hash
app.router.replaceHash('')
- window.location = doc.fullPath() + hash
+ location.assign doc.fullPath() + hash
return
reset: =>
@@ -46,7 +46,7 @@ class app.views.Results extends app.View
openFirst: ->
- @el.firstElementChild?.click()
+ setTimeout (=> @el.firstElementChild?.click()), 0
onDocEnabled: (doc) ->