fix(logout): atom-workspace not focused breaking logout

This commit is contained in:
Ben Gotow 2015-03-09 10:06:50 -07:00
parent 9362f1e9c5
commit 09dc8887b7
2 changed files with 2 additions and 0 deletions

View file

@ -60,6 +60,7 @@
width:100%;
margin-bottom:20px;
background-color: #F5F5F5;
text-align: center;
}
.environment-selector {

View file

@ -732,6 +732,7 @@ class Atom extends Model
@item = document.createElement("atom-workspace")
@item.setAttribute("id", "sheet-container")
@item.setAttribute("class", "sheet-container")
@item.setAttribute("tabIndex", "-1")
React = require "react"
SheetContainer = require './sheet-container'