maksbd19 / owlcarousel-scrollbar-plugin

A plugin for navigating slides through dragging a scrollbar
MIT License
9 stars 12 forks source link

If mousedrag = "true" #6

Open 269986972 opened 2 years ago

269986972 commented 2 years ago

Hey, I found a vulnerability in the plug-in. Owlcarousel 2 supports dragging. Why doesn't the scroll bar work when dragging items?

yordan-kostadinov commented 2 years ago

Hi, To make it work you need to edit the Scrollbar.js file Replace this: "drag.owl.carousel": $.proxy(function (e) { if (e.namespace && this._core.settings.scrollbarType) { dragging.init = 1; sync.call(this, e); } } with this:

"dragged.owl.carousel": $.proxy(function (e) { if (e.namespace && this._core.settings.scrollbarType) { dragging.init = 0; sync.call(this, e); } }, this), The dragging class is wrong.