2011-01-19 14:53:00 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
2011-02-25 15:47:55 +00:00
|
|
|
// Use jQuery() instead of $() alias, because dwr/util.js, loaded on back end editing
|
|
|
|
// pages, overwrites $.
|
2011-01-19 14:53:00 +00:00
|
|
|
// fade out welcome-message when user logs in
|
2011-02-25 15:47:55 +00:00
|
|
|
jQuery('section#welcome-message').css('display', 'block').delay(2000).fadeOut(1500);
|
2011-01-19 14:53:00 +00:00
|
|
|
|
2011-01-24 18:26:51 +00:00
|
|
|
// fade in flash-message when user logs out
|
2011-02-25 15:47:55 +00:00
|
|
|
jQuery('section#flash-message').css('display', 'none').fadeIn(1500);
|
2011-01-19 14:53:00 +00:00
|
|
|
});
|