Fix regression - the verification tooltips weren't working with FA 5

This commit is contained in:
Danielle McLean 2017-12-18 10:53:45 +11:00
parent 87f04ce988
commit 14723b03ff
Signed by: 00dani
GPG Key ID: 5A5D2D1AFF12EEC5
1 changed files with 6 additions and 2 deletions

View File

@ -14,9 +14,13 @@
{% if app %}{{ app.name | first }}{% endif %}
{% if app %}({% endif %}<a class="u-url code{% if not app %} p-name{% endif %}" href="{{ params.client_id }}">{{ params.client_id }}</a>{% if app %}){% endif %}?
{% if verified %}
<i class="fas fa-check-circle verified-success" data-tooltip data-theme="success" data-html="#verified-success"></i>
<span data-tooltip data-theme="success" data-html="#verified-success">
<i class="fas fa-check-circle verified-success"></i>
</span>
{% else %}
<i class="fas fa-question-circle verified-warning" data-tooltip data-theme="warning" data-html="#verified-warning"></i>
<span data-tooltip data-theme="warning" data-html="#verified-warning">
<i class="fas fa-question-circle verified-warning"></i>
</span>
{% endif %}
</h4>