Skip to content

Commit

Permalink
#14 Add tooltip to the “Flag/Unflag” case button, and fix an issue in…
Browse files Browse the repository at this point in the history
… HTML (missing closing tag)
  • Loading branch information
nadouani committed Nov 16, 2016
1 parent 53ee39b commit 05be4c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui/app/views/partials/case/case.panelinfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ <h4>
{{caze.title}}</span>
<span class="pull-right">
<span class="ml-xs">
<a href ng-click="mergeCase()" tooltip="Merge case">
<a href ng-click="mergeCase()" class="noline" tooltip="Merge case">
<i class="text-primary fa fa-2x fa-compress"></i>
</a>
</span>
<span class="ml-xs">
<a href ng-click="switchFlag()" style="text-decoration: none">
<a href ng-click="switchFlag()" class="noline" tooltip="{{caze.flag ? 'Unflag case' : 'Flag case'}}">
<i class="text-yellow fa fa-2x fa-flag" ng-show="caze.flag"></i>
<i class="text-muted fa fa-2x fa-flag" ng-class="setFlag" ng-mouseout="setFlag='text-muted'" ng-mouseover="setFlag='text-yellow'" ng-show="!caze.flag || caze.flag == undefined"></i>
</a>
</span>
<span class="ml-xs" ng-hide="isCaseClosed()">
<a href ng-click="openCloseDialog()" tooltip="Close case">
<a href ng-click="openCloseDialog()" class="noline" tooltip="Close case">
<i class="text-muted fa fa-2x fa-check-circle-o" ng-class="CloseCase" ng-mouseout="CloseCase='text-muted glyphicon-ok-circle'" ng-mouseover="CloseCase='text-success glyphicon-ok-sign'"></i>
</a>
</span>
<span class="ml-xs" ng-show="isCaseClosed()">
<a href ng-click="reopenCase()" tooltip="Reopen case">
<a href ng-click="reopenCase()" class="noline" tooltip="Reopen case">
<i class="text-success fa fa-2x fa-check-circle"></i>
</a>
</sp
</spnn>
</span>
</h4>
</div>
Expand Down

0 comments on commit 05be4c4

Please sign in to comment.