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">
|
||||
{% 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>
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
function proceed()
|
||||
{
|
||||
if (window.opener) {
|
||||
console.log(window.opener);
|
||||
window.opener.storage_proceed();
|
||||
window.opener.umap_proceed();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue