Commit 2325237c0c8cc6fb22de21dc4fa6cc48d3fc24c3
Exists in
master
and in
28 other branches
Merge branch 'ai3184' into 'stable'
Ensure hidden before fadeIn() http://noosfero.org/Development/ActionItem3184
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
public/javascripts/application.js
... | ... | @@ -519,7 +519,7 @@ jQuery(function($) { |
519 | 519 | } |
520 | 520 | } else { |
521 | 521 | // not logged in |
522 | - $('#user .not-logged-in, .login-block .not-logged-user').fadeIn(); | |
522 | + $('#user .not-logged-in, .login-block .not-logged-user').hide().fadeIn(); | |
523 | 523 | } |
524 | 524 | if (data.notice) { |
525 | 525 | display_notice(data.notice); | ... | ... |