2008-09-25 21:05:52 -04:00
|
|
|
jQuery(document).ready( function($) {
|
2008-09-28 00:11:27 -04:00
|
|
|
$('#show-settings-link').click(function () {
|
2008-10-24 06:29:07 -04:00
|
|
|
$('#screen-options-wrap').slideDown('normal', function(){
|
2008-10-01 21:32:27 -04:00
|
|
|
$('#hide-settings-link').show();
|
|
|
|
$('#show-settings-link').hide();
|
2008-10-24 15:33:40 -04:00
|
|
|
$('#screen-options-link-wrap').removeClass('screen-options-closed').addClass('screen-options-open');
|
2008-10-01 21:32:27 -04:00
|
|
|
});
|
|
|
|
|
2008-09-25 21:05:52 -04:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#hide-settings-link').click(function () {
|
2008-10-24 06:29:07 -04:00
|
|
|
$('#screen-options-wrap').slideUp('normal', function(){
|
2008-09-25 21:05:52 -04:00
|
|
|
$('#show-settings-link').show();
|
2008-10-01 21:32:27 -04:00
|
|
|
$('#hide-settings-link').hide();
|
2008-10-24 15:33:40 -04:00
|
|
|
$('#screen-options-link-wrap').removeClass('screen-options-open').addClass('screen-options-closed');
|
2008-09-25 21:05:52 -04:00
|
|
|
});
|
2008-10-01 21:32:27 -04:00
|
|
|
|
2008-09-25 21:05:52 -04:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|