Fix wrong class in auth panel

This commit is contained in:
Yohan Boniface 2018-06-02 19:17:57 +02:00
parent a7ec9b173d
commit 6b3d45064c
2 changed files with 3 additions and 4 deletions

View file

@ -29,7 +29,7 @@
<ul class="login-grid block-grid">
{% for name in backends.backends %}
<li>
<a rel="nofollow" href="{% url "social:begin" name %}" class="storage-login-popup login-{{ name }}" title="{{ name|title }}"></a>
<a rel="nofollow" href="{% url "social:begin" name %}" class="umap-login-popup login-{{ name }}" title="{{ name|title }}"></a>
</li>
{% endfor %}
</ul>

View file

@ -6,8 +6,7 @@
function proceed()
{
if (window.opener) {
console.log(window.opener);
window.opener.storage_proceed();
window.opener.umap_proceed();
}
}