contact_slider.tpl didn't get updated with one of the bootstrap changes where 'in' was renamed to 'show'
This commit is contained in:
parent
6a3919587f
commit
289161aad1
@ -4,10 +4,10 @@ $(document).ready(function() {
|
|||||||
// The slider does not render correct if width is given in % and
|
// The slider does not render correct if width is given in % and
|
||||||
// the slider container is hidden (display: none) during rendering.
|
// the slider container is hidden (display: none) during rendering.
|
||||||
// So let's unhide it to render and hide again afterwards.
|
// So let's unhide it to render and hide again afterwards.
|
||||||
if(!$("#affinity-tool-collapse").hasClass("in")) {
|
if(!$("#affinity-tool-collapse").hasClass("show")) {
|
||||||
$("#affinity-tool-collapse").addClass("in");
|
$("#affinity-tool-collapse").addClass("show");
|
||||||
makeContactSlider();
|
makeContactSlider();
|
||||||
$("#affinity-tool-collapse").removeClass("in");
|
$("#affinity-tool-collapse").removeClass("show");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
makeContactSlider();
|
makeContactSlider();
|
||||||
|
Reference in New Issue
Block a user