Commit 95430667e4e95582bd4ce318913befbcf0048d26
1 parent
3133df27
Exists in
master
and in
28 other branches
Ensure hidden before fadeIn()
(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); | ... | ... |