Fade using jquery.color. Props JeremyVisser. fixes #5369

git-svn-id: http://svn.automattic.com/wordpress/trunk@6573 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-01-08 06:44:31 +00:00
parent e7350d078e
commit 726332d535
1 changed files with 4 additions and 0 deletions

4
wp-admin/js/admin.js Normal file
View File

@ -0,0 +1,4 @@
// 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);
});