mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 05:16:34 +02: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:
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;
|
||||
}
|
Reference in New Issue
Block a user