37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
<!--
|
|
|
|
Copyright (C) 2015-2016 Jeeva Kandasamy (jkandasa@gmail.com)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
-->
|
|
<legend>
|
|
<span style="font-size: 16px" class="pull-right">
|
|
<a href="" ng-if="editMode" uib-tooltip="{{ 'ADD_NEW_WIDGET' | translate }}" tooltip-placement="left" ng-click="addWidgetDialog()">
|
|
<i class="glyphicon glyphicon-plus-sign"></i>
|
|
</a>
|
|
<a href="" ng-if="editMode" uib-tooltip="{{ 'EDIT_DASHBOARD' | translate }}" tooltip-placement="left" ng-click="editDashboardDialog()">
|
|
<i class="glyphicon glyphicon-cog"></i>
|
|
</a>
|
|
<a href="" ng-if="editMode" uib-tooltip="{{'SAVE_CHANGES' | translate}}" tooltip-placement="left" ng-click="toggleEditMode()">
|
|
<i class="glyphicon glyphicon-saved"></i>
|
|
</a>
|
|
<a href="" ng-if="!editMode" uib-tooltip="{{'ENABLE_EDIT_MODE' | translate}}" tooltip-placement="left" ng-click="toggleEditMode()">
|
|
<i class="glyphicon glyphicon-edit"></i>
|
|
</a>
|
|
<a href="" ng-if="editMode" uib-tooltip="{{ 'UNDO_CHANGES' | translate }}" tooltip-placement="left" ng-click="cancelEditMode()">
|
|
<i class="glyphicon glyphicon-repeat adf-flip"></i>
|
|
</a>
|
|
</span>
|
|
</legend>
|