File "frontend.js.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/testimonials/includes/frontend.js.php
File size: 1.14 KB
MIME-type: --
Charset: utf-8
(function($) {
// Clear the controls in case they were already created.
$('.fl-node-<?php echo $id; ?> .fl-slider-next').empty();
$('.fl-node-<?php echo $id; ?> .fl-slider-prev').empty();
// Create the slider.
$('.fl-node-<?php echo $id; ?> .fl-testimonials').bxSlider({
autoStart : <?php echo $settings->auto_play ?>,
auto : true,
adaptiveHeight: true,
pause : <?php echo $settings->pause * 1000; ?>,
mode : '<?php echo $settings->transition; ?>',
speed : <?php echo $settings->speed * 1000; ?>,
pager : <?php echo ($settings->layout == 'wide') ? $settings->dots : 0; ?>,
nextSelector : '.fl-node-<?php echo $id; ?> .fl-slider-next',
prevSelector : '.fl-node-<?php echo $id; ?> .fl-slider-prev',
nextText: '<i class="fa fa-chevron-circle-right"></i>',
prevText: '<i class="fa fa-chevron-circle-left"></i>',
controls : <?php echo ($settings->layout == 'compact') ? $settings->arrows : 0; ?>,
onSliderLoad: function() {
$('.fl-node-<?php echo $id; ?> .fl-testimonials').addClass('fl-testimonials-loaded');
},
onSliderResize: function(currentIndex){
this.working = false;
this.reloadSlider();
},
});
})(jQuery);