From 903bf47151ef19af2335f91b3ae5d81214819121 Mon Sep 17 00:00:00 2001 From: Seth Meranda <smeranda2@unl.edu> Date: Wed, 29 Sep 2010 15:27:53 +0000 Subject: [PATCH] more refinements to animation --- plugins/unl_theme/scripts/JS/actionNotice.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/unl_theme/scripts/JS/actionNotice.js b/plugins/unl_theme/scripts/JS/actionNotice.js index d1edfd6d..e8dae814 100644 --- a/plugins/unl_theme/scripts/JS/actionNotice.js +++ b/plugins/unl_theme/scripts/JS/actionNotice.js @@ -3,12 +3,16 @@ $(document).ready(function(){ $('#casOption .loginMessage').fadeOut('fast', function(){ $('#casOption').animate({ 'width' : '120px' + }, function(){ + $('#casLogin').animate({ + 'opacity' : '0.3' + }); }); $('#elggOption').animate({ 'width' : '790px' }, function(){ $('.optionMessage').fadeOut('fast', function(){ - $('#actionBar').removeClass('casLogin').addClass('elggLogin '); + $('#actionBar').removeClass('casLogin').addClass('elggLogin'); $('.elggLoginForm').fadeIn('fast'); }); }); -- GitLab