From cded70c48a58632ce2504059332d684279a4217a Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 16 Oct 2013 09:53:12 -0700 Subject: [PATCH] Set tabindex on RootView so it can be focused directly --- src/root-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root-view.coffee b/src/root-view.coffee index 51ed7eab3..a433a949e 100644 --- a/src/root-view.coffee +++ b/src/root-view.coffee @@ -55,7 +55,7 @@ class RootView extends View # Private: @content: (state) -> - @div id: 'root-view', => + @div id: 'root-view', tabindex: -1, => @div id: 'horizontal', outlet: 'horizontal', => @div id: 'vertical', outlet: 'vertical', => @div outlet: 'panes'