File "frontend.js.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/menu/includes/frontend.js.php
File size: 546 bytes
MIME-type: --
Charset: utf-8
<?php
// set defaults
$type = isset( $settings->menu_layout ) ? $settings->menu_layout : 'horizontal';
$mobile = isset( $settings->mobile_toggle ) ? $settings->mobile_toggle : 'expanded';
?>
(function($) {
$(function() {
new FLBuilderMenu({
id: '<?php echo $id ?>',
type: '<?php echo $type ?>',
mobile: '<?php echo $mobile ?>',
breakPoints: {
medium: <?php echo $global_settings->medium_breakpoint ?>,
small: <?php echo $global_settings->responsive_breakpoint ?>
}
});
});
})(jQuery);