Skip to content

Commit

Permalink
#12 Fix tags editor
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 23, 2017
1 parent 164a6b6 commit ffc66e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ui/app/views/directives/updatable-tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

<span class="tags-list flexwrap">
<span ng-repeat="tag in value" class="label label-primary mb-xxxs mr-xxxs">{{tag.text}}</span>
<small ng-show="active">
<!-- -->
<small ng-show="active" style="line-height:18px;" class="mb-xxxs mr-xxxs">
<a href class="clickable" tooltip-popup-delay='500' uib-tooltip="edit">
<i class="glyphicon glyphicon-pencil" ng-click="edit()"></i>
</a>
Expand Down
2 changes: 1 addition & 1 deletion ui/app/views/directives/updatable-user.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<span ng-hide="updatable.updating" ng-init="active = false" ng-mouseenter="active = true" ng-mouseleave="active = false">
<span class="updatable-value" ng-bind="getUserInfo.get(value) | getField:'name'" style="vertical-align:top"></span>
<small ng-show="active">
<a style="cursor: pointer;" target="_self" tooltip-popup-delay='500' uib-tooltip="edit">
<a class="clickable" target="_self" tooltip-popup-delay='500' uib-tooltip="edit">
<i class="glyphicon glyphicon-pencil" ng-click="edit()"></i>
</a>
</small>
Expand Down

0 comments on commit ffc66e7

Please sign in to comment.