From f190dab5e6256db308d4313f67b1aa6c0b3f9afa Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 16 Apr 2013 09:22:18 -0700 Subject: [PATCH] Remove classes from buttons The collapse class was causing the button to be very small since it is defined in bootstrap with height 0. --- src/packages/command-panel/lib/command-panel-view.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/packages/command-panel/lib/command-panel-view.coffee b/src/packages/command-panel/lib/command-panel-view.coffee index a5ef8b681..a3fddefb2 100644 --- a/src/packages/command-panel/lib/command-panel-view.coffee +++ b/src/packages/command-panel/lib/command-panel-view.coffee @@ -14,8 +14,8 @@ class CommandPanelView extends View @div class: 'loading is-loading', outlet: 'loadingMessage', 'Searching...' @div class: 'header', outlet: 'previewHeader', => @ul outlet: 'expandCollapse', class: 'expand-collapse', => - @li class: 'expand', 'Expand All' - @li class: 'collapse', 'Collapse All' + @li 'Expand All' + @li 'Collapse All' @span outlet: 'previewCount', class: 'preview-count' @subview 'previewList', new PreviewList(rootView)