diff options
-rw-r--r-- | hyperkitty/templates/login.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/hyperkitty/templates/login.html b/hyperkitty/templates/login.html index fb82c44..97bac12 100644 --- a/hyperkitty/templates/login.html +++ b/hyperkitty/templates/login.html @@ -22,7 +22,8 @@ action="{% url 'socialauth_complete' "browserid" %}?next={{ next }}"> {% csrf_token %} <input type="hidden" name="assertion" value="" /> - <a rel="nofollow" id="browserid" href="#" class="disabled"><img + <a rel="nofollow" id="browserid" href="#" class="disabled" + title="Wait for it..."><img src="{{ STATIC_URL }}img/login/persona-large-disabled.png" alt="Login using Persona" /></a> </form> @@ -90,7 +91,9 @@ }).each(function() { var img = $(this).find("img"); img.attr("src", img.attr("src").replace(/-disabled/, "")); - $(this).removeClass("disabled"); + $(this).removeClass("disabled") + .tooltip("destroy") + .removeAttr("title"); }); // OpenID $('a.openid').click(function(e) { |