From 726332d535d22da1d352f847c6857736ac34d4af Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 8 Jan 2008 06:44:31 +0000 Subject: [PATCH] Fade using jquery.color. Props JeremyVisser. fixes #5369 git-svn-id: http://svn.automattic.com/wordpress/trunk@6573 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/js/admin.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wp-admin/js/admin.js diff --git a/wp-admin/js/admin.js b/wp-admin/js/admin.js new file mode 100644 index 000000000..97d311bfe --- /dev/null +++ b/wp-admin/js/admin.js @@ -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); +}); \ No newline at end of file