(function($) {
"use strict";
var fullHeight = function() {
$('.js-fullheight').css('height', $(window).height());
$(window).resize(function(){
$('.js-fullheight').css('height', $(window).height());
});
};
fullHeight();
var carousel = function() {
$('.featured-carousel').owlCarousel({
loop:true,
autoplay: true,
margin:30,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
nav:true,
dots: true,
autoplayHoverPause: false,
items: 1,
navText : ["",""],
responsive:{
0:{
items:1
},
600:{
items:2
},
1000:{
items:3
}
}
});
};
carousel();
})(jQuery);