Remove classes from buttons

The collapse class was causing the button to be very small since it
is defined in bootstrap with height 0.
This commit is contained in:
Kevin Sawicki
2013-04-16 09:22:18 -07:00
parent e037bf1db9
commit f190dab5e6

View File

@@ -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)