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