mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
3d3c4ec630
git-svn-id: http://svn.automattic.com/wordpress/trunk@9330 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
661 B
JavaScript
21 lines
661 B
JavaScript
jQuery(document).ready( function($) {
|
|
$('#show-settings-link').click(function () {
|
|
$('#screen-options-wrap').slideDown('normal', function(){
|
|
$('#hide-settings-link').show();
|
|
$('#show-settings-link').hide();
|
|
$('#screen-options-link-wrap').removeClass('screen-options-closed').addClass('screen-options-open');
|
|
});
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#hide-settings-link').click(function () {
|
|
$('#screen-options-wrap').slideUp('normal', function(){
|
|
$('#show-settings-link').show();
|
|
$('#hide-settings-link').hide();
|
|
$('#screen-options-link-wrap').removeClass('screen-options-open').addClass('screen-options-closed');
|
|
});
|
|
|
|
return false;
|
|
});
|
|
}); |