mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-17 16:15:24 +01:00
a03f02f4b3
git-svn-id: http://svn.automattic.com/wordpress/trunk@8936 1a063a9b-81f0-0310-95a4-ce76da25c4cd
27 lines
613 B
JavaScript
27 lines
613 B
JavaScript
jQuery( function($) {
|
|
$('#users').wpList();
|
|
|
|
columns.init('user');
|
|
|
|
// 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;
|
|
});
|
|
});
|