Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function(){
- function resizeOwl(){
- jQuery('.owl-carousel').each(function(){
- var carousel = jQuery(this);
- var height = jQuery(this).find('.owl-item:first').height();
- if (carousel.height() != height){
- jQuery(this).css('height', height + 'px');
- }
- });
- requestAnimationFrame(resizeOwl);
- }
- document.addEventListener('load', function(){
- requestAnimationFrame(resizeOwl);
- });
- })();
Add Comment
Please, Sign In to add comment