PluginProbe
Property Hive / 2.2.4
Property Hive v2.2.4
2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 1.4.61 All 261 releases
propertyhive / assets / js / frontend / carousel.js

carousel.js in Property Hive 2.2.4, at assets/js/frontend/carousel.js

17 lines 661 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(window).on('load', function()
2 {
3 document.querySelectorAll('.propertyhive-shortcode-carousel').forEach(slider => {
4 tns({
5 container: slider,
6 items: propertyhive_carousel_params.items,
7 controlsPosition: propertyhive_carousel_params.controlsPosition,
8 nav: propertyhive_carousel_params.nav,
9 navPosition: propertyhive_carousel_params.navPosition,
10 gutter: propertyhive_carousel_params.gutter,
11 mouseDrag: propertyhive_carousel_params.mouseDrag,
12 controlsText: propertyhive_carousel_params.controlsText,
13 responsive: propertyhive_carousel_params.responsive,
14 slideBy: "page"
15 });
16 });
17 });