Fix wrong class in auth panel
This commit is contained in:
parent
a7ec9b173d
commit
6b3d45064c
2 changed files with 3 additions and 4 deletions
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue