/**
* Canuck owl doc-ready-scripts
*
* Sets up the Owl Carousels used in the theme.
*
* http://kevinsspace.ca
* Canuck WordPress Theme
* Copyright (C) 2017 Kevin Archibald Licensed GPLv2 or later
*/
jQuery( document ).ready( function( $ ) {
$( '#home-12-carousel' ).owlCarousel( {
items: 4,
loop: true,
center: false,
rewind: true,
autoplay: true,
autoplayHoverPause: true,
nav: true,
margin: 5,
slideBy: 4,
navText: ['','']
} );
$( '#home-13-carousel' ).owlCarousel( {
//items: 8,
loop: true,
center: true,
rewind: true,
autoplay: true,
autoplayHoverPause: true,
nav: true,
margin: 25,
slideBy: 4,
responsiveClass: true,
responsive: {
0: {
items: 3
},
480: {
items: 5
},
700: {
items: 8
}
},
navText: ['','']
} );
} );