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"> <ul class="login-grid block-grid">
{% for name in backends.backends %} {% for name in backends.backends %}
<li> <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> </li>
{% endfor %} {% endfor %}
</ul> </ul>

View file

@ -6,8 +6,7 @@
function proceed() function proceed()
{ {
if (window.opener) { if (window.opener) {
console.log(window.opener); window.opener.umap_proceed();
window.opener.storage_proceed();
} }
} }
@ -16,4 +15,4 @@ proceed();
// To handle errors, this template should be integrated into your authentication error message page // To handle errors, this template should be integrated into your authentication error message page
// Note that you can call any window.opener function like window.opener.func // Note that you can call any window.opener function like window.opener.func
</script> </script>