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

git-svn-id: https://develop.svn.wordpress.org/trunk@6573 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-01-08 06:44:31 +00:00
parent 1faae5f44d
commit 97701da591

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);
});