frontend.js.php 265 B

123456789101112131415161718192021
  1. <?php
  2. // set defaults
  3. $time = $module->get_time();
  4. $type = $settings->layout;
  5. ?>
  6. (function($) {
  7. $(function() {
  8. new FLBuilderCountdown({
  9. id: '<?php echo $id ?>',
  10. time: '<?php echo $time ?>',
  11. type: '<?php echo $type ?>',
  12. });
  13. });
  14. })(jQuery);