mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
TopSlider added for local series searching!
Should be easy to add others (would want to have it close other open ones, I think).
This commit is contained in:
parent
08804208cf
commit
745d9d9355
13 changed files with 241 additions and 78 deletions
13
NzbDrone.Web/Scripts/slider.js
Normal file
13
NzbDrone.Web/Scripts/slider.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
$(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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue