Skip to content

Commit

Permalink
Get addToDashboard.html synced up with edit dashboard page
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Oct 17, 2013
1 parent f218c37 commit 1d1a729
Showing 1 changed file with 29 additions and 15 deletions.
44 changes: 29 additions & 15 deletions hawtio-web/src/main/webapp/app/dashboard/html/addToDashboard.html
@@ -1,26 +1,40 @@
<div class="controller-section" ng-controller="Dashboard.EditDashboardsController">
<div class="row-fluid">
<div class="span6">
<div class="control-group">
<button class="btn" ng-click="goBack()"
title="Go back to the previous view" data-placement="bottom">
<i class="icon-backward"></i> Back
</button>
<button class="btn" ng-disabled="hasSelection()" ng-click="addViewToDashboard()"
title="Adds the current view to the selected dashboard(s)" data-placement="bottom">
<i class="icon-dashboard"></i> Add View To Dashboard
</button>
<button class="btn" ng-click="create()"
title="Create a new empty dashboard" data-placement="bottom">
<i class="icon-plus"></i> Create
</button>
</div>

<div class="span12">
<ul class="nav nav-tabs">

<li>
<a href="" ng-click="goBack()"
title="Go back to the previous view" data-placement="bottom">
<i class="icon-backward"></i> Back
</a>
</li>

<li>
<a href="" ng-disabled="!hasSelection()" ng-click="addViewToDashboard()"
title="Adds the current view to the selected dashboard(s)" data-placement="bottom">
<i class="icon-dashboard"></i> Add View To Dashboard
</a>
</li>

<li>
<a href="" ng-click="create()"
title="Create a new empty dashboard" data-placement="bottom">
<i class="icon-plus"></i> Create
</a>
</li>

</ul>

</div>
<!--
<div class="span6">
<div class="control-group">
<input type="text" class="span12 search-query" ng-model="gridOptions.filterOptions.filterText" placeholder="Filter...">
</div>
</div>
-->
</div>

<div class="row-fluid">
Expand Down

0 comments on commit 1d1a729

Please sign in to comment.