git-svn-id: https://develop.svn.wordpress.org/trunk@9454 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
533 B
JavaScript
14 lines
533 B
JavaScript
jQuery(document).ready( function($) {
|
|
$('#show-settings-link').click(function () {
|
|
$('#screen-options-wrap').slideToggle('normal', function(){
|
|
if ( $(this).hasClass('screen-options-open') ) {
|
|
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
|
|
$(this).removeClass('screen-options-open');
|
|
} else {
|
|
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
|
|
$(this).addClass('screen-options-open');
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
}); |