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