Your IP : 216.73.216.109


Current Path : /home/cbequiperp/www/plugins/system/ztshortcodes/core/assets/js/
Upload File :
Current File : /home/cbequiperp/www/plugins/system/ztshortcodes/core/assets/js/testimonial.js

/**
 * Zo2 Shortcode
 * @param {pointer} w Window pointer
 * @param {pointer} $ jQuery pointer
 * @returns {undefined}
 */

jQuery(document).ready(function(){
  jQuery('.zt-testimonial').each(function(e){
    var id = jQuery(this).attr('id');
    var items = jQuery(this).attr('data-items');
    var auto = jQuery(this).attr('data-auto') == 'yes' ? true : false;
    var paging = jQuery(this).attr('data-paging') == 'yes' ? true : false;
    var controls = jQuery(this).attr('data-controls') == 'yes' ? true : false;
    jQuery('#'+id).owlCarousel({
      dots: paging,
      nav: controls,
      autoplay: auto,
      items: items,
      responsive : {
        0:{
          items:1
        },
        480:{
          items: items
        }
      }
    });
  })
});