diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/login.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hyperkitty/templates/login.html b/hyperkitty/templates/login.html index 41f72e4..3eeee8c 100644 --- a/hyperkitty/templates/login.html +++ b/hyperkitty/templates/login.html @@ -19,7 +19,7 @@ <form method="post" action="{% url 'socialauth_complete' "browserid" %}?next={{ next }}"> {% csrf_token %} <input type="hidden" name="assertion" value="" /> - <a rel="nofollow" id="browserid" href="#"><img src="{{ STATIC_URL }}img/login/persona-large-disabled.png" alt="Login using Persona" /></a> + <a rel="nofollow" id="browserid" href="#" class="disabled"><img src="{{ STATIC_URL }}img/login/persona-large-disabled.png" alt="Login using Persona" /></a> </form> </li> <li><a title="Google" class="socialaccount_provider google" href="{% url 'socialauth_begin' backend='google' %}"><img src="{{ STATIC_URL }}img/login/google.png" alt="Google"></a></li> @@ -67,6 +67,7 @@ }).each(function() { var img = $(this).find("img"); img.attr("src", img.attr("src").replace(/-disabled/, "")); + $(this).removeClass("disabled"); }); }); </script> |