Every line of 'owl carousel vertical direction' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
136 getOrientation() { 137 return this.options.orientation || Orientation.VERTICAL; 138 }
330 preloadNext_(pos, dir) { 331 const nextPos = this.nextPos_(pos, dir); 332 if (nextPos != pos) { 333 this.withinWindow_(nextPos, cell => { 334 Services.ownersForDoc(this.element).schedulePreload(this.element, cell); 335 }); 336 } 337 }
56 set isHorizontal(value: boolean) { 57 this._isHorizontal = value; 58 }
288 function onArrowClick(direction) 289 { 290 var nbItemVisible = Math.floor(iscroll.wrapperW / ITEM_WIDTH) + 1; 291 scroll(iscroll.x - direction * nbItemVisible * ITEM_WIDTH, nbItemVisible); 292 }