diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-09-30 03:51:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-30 03:51:09 +0000 |
commit | fecd5406d7d192f812ac84bf8093f1c6688eea18 (patch) | |
tree | 14b25b11fc79e608d545dd6fc37925f261adc6da /gui/app/views/modal/environmentDialog.html | |
parent | 2a02457c7b4d43e6a3d9d513023bc312a0a96ba9 (diff) | |
parent | da0163b7b7aaf3ede4e757a0b7d94a5ea99b1083 (diff) |
Merge "Remove checkno.png and checkyes.png due to license issue"
Diffstat (limited to 'gui/app/views/modal/environmentDialog.html')
-rw-r--r-- | gui/app/views/modal/environmentDialog.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/app/views/modal/environmentDialog.html b/gui/app/views/modal/environmentDialog.html index 4c539fc33..4c4906972 100644 --- a/gui/app/views/modal/environmentDialog.html +++ b/gui/app/views/modal/environmentDialog.html @@ -139,8 +139,8 @@ <th>status</th> </tr> <tr ng-repeat="(name, value) in yardstickImage"> - <td ng-if="selectImageList.indexOf(name) > -1"><img src="images/checkyes.png" style="height:12px;cursor:pointer" ng-click="unselectImage(name)" /></td> - <td ng-if="selectImageList.indexOf(name) == -1"><img src="images/checkno.png" style="height:12px;cursor:pointer" ng-click="selectImage(name)" /></td> + <td ng-if="selectImageList.indexOf(name) > -1"><span class="glyphicon glyphicon-check" aria-hidden="true" ng-click="unselectImage(name)"></span></td> + <td ng-if="selectImageList.indexOf(name) == -1"><span class="glyphicon glyphicon-unchecked" aria-hidden="true" ng-click="selectImage(name)"></span></td> <td>{{name}}</td> <td>{{value.description}}</td> <td>{{value.status}}</td> |