1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/static/directives/icon-image-view.html
Joseph Schorr 44b4063ec9 Small fixes for external login buttons (#260)
1) Display up to three per row, rather than two
2) Fix the display of external images to allow for local references
2020-03-10 16:19:57 -04:00

5 lines
177 B
HTML

<span class="icon-image-view-element">
<img ng-src="{{ value }}" ng-if="value.indexOf('/') >= 0">
<i class="fa" ng-class="value" ng-if="value.indexOf('/') < 0"></i>
</span>