mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
b10412eab9
git-svn-id: http://svn.automattic.com/wordpress/trunk@8988 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
563 B
JavaScript
21 lines
563 B
JavaScript
jQuery(document).ready( function($) {
|
|
$('#show-settings-link').click(function () {
|
|
$('#edit-settings').slideDown('normal', function(){
|
|
$('#show-settings-link').hide();
|
|
$('#hide-settings-link').show();
|
|
|
|
});
|
|
$('#show-settings').addClass('show-settings-opened');
|
|
return false;
|
|
});
|
|
|
|
$('#hide-settings-link').click(function () {
|
|
$('#edit-settings').slideUp('normal', function(){
|
|
$('#hide-settings-link').hide();
|
|
$('#show-settings-link').show();
|
|
$('#show-settings').removeClass('show-settings-opened');
|
|
});
|
|
|
|
return false;
|
|
});
|
|
}); |