bootstrap-touch-carousel
bootstrap-touch-carousel copied to clipboard
Bug: Touch-ability only starts on prev/next button click
On the demo page slider buttons disappear after a short moment. But that's not happening for me. Although it starts after clicking once on next or prev buttons. Is there a function to call to force-start touch UI (with no next/prev buttons)? If not, please add it.
I did try with $('.left').click(); with no luck.
he @grijos,
Nope, there is no function to push force the UI. It gets immediately invoked. Could you please add some information about you environment.
Running Browser: Browser Version: OS:
That would be helpful! Thanks.
I have the same problem with Android 4.2.2 and Chrome 38.0.2125.102
Hi @ixisio, I'm running Chrome 38.0.2125.104 / on OS X Yosemite 10.10. Thanks
I was also having this issue, calling the code below in a document.ready function resolved it and activate the touch-ability before a click.
$('.carousel').carousel()
I'm having the same problem. If I run $('.carousel').carousel() I get the touch interface but even on devices that don't have touch which is not what I want...
Somehow the classes will not be added on mobile sizes. Desktop size does not matter but on mobile is it required. I could not fix it too :(
If you touch the indicator than the classes are added
I was having the same problem. In my case I was generating the carousel dynamically so I had to call $('.carousel').carousel(); after the DOM nodes were ready so the events could be properly attached. Keep it in mind!
I have been able to reproduce the problem.
It works on BS 3.0.0 (version used in the demo) but it doesn't work with BS 3.3.4 (last version atm).
Forcing this script : $('.carousel').carousel(); after loading, made it work on 3.3.4.
@nicomollet Thanks Sir for testing the frwk w/ the current version of Bootstrap. Can you make a PR with your fix for 3.3.x?