mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed top slider, it will now work for multiple sliders.
This commit is contained in:
parent
c42518b34e
commit
4c6287827c
3 changed files with 35 additions and 17 deletions
|
@ -1,13 +1,36 @@
|
|||
$(document).ready(function () {
|
||||
$(".sliderButtonContainer").live('click', function () {
|
||||
sliderToggle();
|
||||
$(".sliderButton").live('click', function () {
|
||||
sliderToggle(this);
|
||||
});
|
||||
});
|
||||
|
||||
function sliderToggle() {
|
||||
$('.sliderContent').slideToggle('slow');
|
||||
function sliderToggle(sliderButton) {
|
||||
//Get sliderContent
|
||||
var sliderContent = $(sliderButton).siblings('.sliderContent');
|
||||
|
||||
//Open the slider
|
||||
sliderContent.slideToggle('slow');
|
||||
|
||||
//Change the slider Image
|
||||
$(".sliderButtonContainer").children('.sliderImage').toggleClass('sliderOpened sliderClosed');
|
||||
|
||||
//Focus in the search box
|
||||
$(sliderContent).children('.localSeriesLookup').focus();
|
||||
|
||||
//Hide the sliders
|
||||
hideSliders(sliderContent);
|
||||
|
||||
//Prevent the Address Bar from changing
|
||||
return false;
|
||||
}
|
||||
|
||||
function hideSliders(newlyOpenedSlider) {
|
||||
$('.sliderContent').each(function (index, value) {
|
||||
var newlyOpenedSliderId = $(newlyOpenedSlider).parent('.top-slider').attr('id');
|
||||
var id = $(this).parent('.top-slider').attr('id');
|
||||
|
||||
//If the ID's of the top-sliders don't match then hide it
|
||||
if (id != newlyOpenedSliderId)
|
||||
$(this).slideUp();
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue