mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
726332d535
git-svn-id: http://svn.automattic.com/wordpress/trunk@6573 1a063a9b-81f0-0310-95a4-ce76da25c4cd
4 lines
223 B
JavaScript
4 lines
223 B
JavaScript
// Fade update alerts. TODO, don't hard-code original bgcolor.
|
|
jQuery(document).ready(function(){
|
|
jQuery('.updated.fade').animate( { backgroundColor: '#FFFF33' }, 3000).animate( { backgroundColor: '#DDEDFA' }, 3000);
|
|
}); |