mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
b8ed2c0bec
git-svn-id: http://svn.automattic.com/wordpress/trunk@8860 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
604 B
JavaScript
24 lines
604 B
JavaScript
jQuery(document).ready( function($) {
|
|
columns.init('page');
|
|
|
|
// Edit Settings
|
|
$('#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;
|
|
});
|
|
}); |