Created
June 3, 2015 19:34
-
-
Save jongravois/5bff01c3037bb6a31f32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span tooltip="Vote Needed" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-exclamation-sign" | |
ng-class="{'cBlue': data.need_vote, 'cGray': !data.need_vote}"></span> | |
<span tooltip="Comments" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-exclamation-sign" | |
ng-class="{'cYellow': data.has_comment, 'cGray': !data.has_comment}"></span> | |
<span tooltip="Stale Application" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-exclamation-sign" | |
ng-class="{'cRed': data.is_stale, 'cGray': !data.is_stale}"></span> | |
</a> | |
<span tooltip="WatchList" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-sunglasses" | |
ng-class="{'cGreen': data.is_watched, 'cGray': !data.is_watched}"></span> | |
<span tooltip="Disbursement Issue" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-usd" | |
ng-class="{'cOrange': data.disbursement_issue, 'cGray': !data.disbursement_issue}"></span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment