Owl Carousel Transitions Effect Not Working After Chrome Latest Update (V36) Owl Carousel Transitions Effect Not Working After Chrome Latest Update (V36) google-chrome google-chrome

Owl Carousel Transitions Effect Not Working After Chrome Latest Update (V36)


I have found the Solution friends.

Here is that..

Replacing the below line of code

support3d = (asSupport !== null && asSupport.length >= 1 && asSupport.length <= 2);

instead of

support3d = (asSupport !== null && asSupport.length === 1);

This Solved My Problem. Now CSS Transitions Working Fine on All Browsers.


In version 1.3.3 replace this:

support3d = (asSupport !== null && asSupport.length === 1);

in line 804 with this:

support3d = (asSupport !== null && asSupport.length >= 1 && asSupport.length <= 2);

Then it should work out just fine!


For the convenient, I've created a branch for it, easy to merge, easy to download:https://github.com/lib-issue/OwlCarousel/tree/stackoverflow_25153801

It's possible to use:

support3d = (asSupport !== null && asSupport.length !== 0);

as well.