mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
28d9d8fde9
git-svn-id: http://svn.automattic.com/wordpress/trunk@9054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
451 B
JavaScript
19 lines
451 B
JavaScript
jQuery(document).ready( function($) {
|
|
$('#show-settings-link').click(function () {
|
|
$('#edit-settings-wrap').slideDown('normal', function(){
|
|
$('#hide-settings-link').show();
|
|
$('#show-settings-link').hide();
|
|
});
|
|
|
|
return false;
|
|
});
|
|
|
|
$('#hide-settings-link').click(function () {
|
|
$('#edit-settings-wrap').slideUp('normal', function(){
|
|
$('#show-settings-link').show();
|
|
$('#hide-settings-link').hide();
|
|
});
|
|
|
|
return false;
|
|
});
|
|
}); |