mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
745d9d9355
Should be easy to add others (would want to have it close other open ones, I think).
13 lines
No EOL
366 B
JavaScript
13 lines
No EOL
366 B
JavaScript
$(document).ready(function () {
|
|
$(".sliderButtonContainer").live('click', function () {
|
|
sliderToggle();
|
|
});
|
|
});
|
|
|
|
function sliderToggle() {
|
|
$('.sliderContent').slideToggle('slow');
|
|
$(".sliderButtonContainer").children('.sliderImage').toggleClass('sliderOpened sliderClosed');
|
|
|
|
//Prevent the Address Bar from changing
|
|
return false;
|
|
} |