From bc4ceb189cdaf042a0c4d23090675c786bb9e9f8 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 2 Dec 2013 08:25:48 -0800 Subject: [PATCH] Use a class instead of id for horizontal element --- src/workspace-view.coffee | 2 +- static/workspace-view.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workspace-view.coffee b/src/workspace-view.coffee index 0a0ce793b..c69be4351 100644 --- a/src/workspace-view.coffee +++ b/src/workspace-view.coffee @@ -55,7 +55,7 @@ class WorkspaceView extends View # Private: @content: (state) -> @div id: 'workspace', tabindex: -1, => - @div id: 'horizontal', outlet: 'horizontal', => + @div outlet: 'horizontal', => @div id: 'vertical', outlet: 'vertical', => @div outlet: 'panes' diff --git a/static/workspace-view.less b/static/workspace-view.less index c4f49bca2..340f38e98 100644 --- a/static/workspace-view.less +++ b/static/workspace-view.less @@ -28,7 +28,7 @@ h6 { background-color: @app-background-color; font-family: @font-family; - #horizontal { + .horizontal { display: -webkit-flex; height: 100%; }