Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use icons for list/table view buttons
  • Loading branch information
gashcrumb committed Aug 5, 2013
1 parent 3d9e862 commit 495b9c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions hawtio-web/src/main/webapp/app/osgi/html/bundle-list.html
Expand Up @@ -2,8 +2,8 @@
<div class="row-fluid">
<div id="alert-area" class="span9 pull-left"/>
<div id="tab" class="btn-group pull-right" data-toggle="buttons-radio">
<button onclick="location.href='#/osgi/bundle-list'" type="button" class="btn btn-primary active">List View</button>
<button onclick="location.href='#/osgi/bundles'" type="button" class="btn btn-primary">Table View</button>
<button onclick="location.href='#/osgi/bundle-list'" type="button" class="btn active" title="List view"><i class="icon-list"></i></button>
<button onclick="location.href='#/osgi/bundles'" type="button" class="btn" title="Table view"><i class="icon-table"></i></button>
</div>
</div>

Expand Down Expand Up @@ -38,4 +38,4 @@

<table id="bundleTable"/>
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions hawtio-web/src/main/webapp/app/osgi/html/bundles.html
@@ -1,8 +1,8 @@
<div ng-controller="Osgi.BundlesController">
<div class="row-fluid">
<div class="btn-group pull-right" data-toggle="buttons-radio">
<button onclick="location.href='#/osgi/bundle-list'" type="button" class="btn btn-primary">List View</button>
<button onclick="location.href='#/osgi/bundles'" type="button" class="btn btn-primary active">Table View</button>
<button onclick="location.href='#/osgi/bundle-list'" type="button" class="btn" title="List view"><i class="icon-list"></i></button>
<button onclick="location.href='#/osgi/bundles'" type="button" class="btn active" title="Table view"><i class="icon-table"></i></button>
</div>
</div>

Expand Down

0 comments on commit 495b9c9

Please sign in to comment.