git-svn-id: https://develop.svn.wordpress.org/trunk@6573 602fd350-edb4-49c9-b593-d223f7449a82
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);
|
|
}); |