balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

testimonial.js (502B)


      1 (function ($) {
      2 	"use strict";
      3 	var three_item_carosel = function ($scope, $) {
      4 		if ($('.theme_carousel').length) {
      5 			$(".theme_carousel").each(function (index) {
      6 				var $owlAttr = {},
      7 					$extraAttr = $(this).data("options");
      8 				$.extend($owlAttr, $extraAttr);
      9 				$(this).owlCarousel($owlAttr);
     10 			});
     11 		}
     12 	}
     13 	$(window).on('elementor/frontend/init', function () {
     14 		elementorFrontend.hooks.addAction('frontend/element_ready/our_testimonials.default', three_item_carosel);
     15 	});
     16 })(window.jQuery);