When using hidden-* in bootstrap to show/hide an element containing a slideshow, the slide does not re-appear again.
This is due to;
height = (this.options.height / this.options.width) * width;
this.options.height = height;
The only fix I could find so far was to add;
height = (this.options.height / this.options.width) * width;
if (!height) {
return;
}
Please let me know if this approach is accepted, if so I will send a PR.
Thanks