Open ChrisLaurie opened 9 years ago
I too have the same issue. Icon not showing in bootstrap button tag.
<button confirm-click="remove(id);" confirm-message="Are you sure?" type="button" class="btn btn-xs btn-danger">
<span class="glyphicon glyphicon-minus-sign"></span>
</button>
Any update please?
@kevkha
kevkha as a quick fix just change the directive to use element.html() instead of .text()
The change I made actionText = element.html();
element.html(actionText);
I'd do pull request but I dont think this is used much or even if its worth it
I like this - a lot. I am trying to implement this with the standard meanjs stack and it works except for the display of the delete button. meanjs does not use a button but a link () and instead of the wrd "delete" it uses a glyph icon loaded as image. so my code looks like this: