File: /home/emerlux/public_html/wp-content/plugins/porto-functionality/elementor/assets/admin.js
function porto_elementor_add_floating_options( settings ) {
let floating_options = {};
if ( 'yes' != settings.floating_circle ) {
if ( !settings.floating_start_pos || !settings.floating_speed ) {
return '';
}
floating_options = { 'startPos': settings.floating_start_pos, 'speed': settings.floating_speed };
if ( !settings.floating_transition || 'yes' == settings.floating_transition ) {
floating_options['transition'] = true;
} else {
floating_options['transition'] = false;
}
if ( settings.floating_horizontal ) {
floating_options['horizontal'] = true;
} else {
floating_options['horizontal'] = false;
}
if ( settings.floating_duration ) {
floating_options['transitionDuration'] = parseInt( settings.floating_duration, 10 );
}
return ' data-plugin-float-element data-plugin-options=' + JSON.stringify( floating_options );
} else {
floating_options['circle'] = true;
if ( settings.floatcircle_transition && 'yes' == settings.floatcircle_transition ) {
floating_options['transition'] = true;
if ( settings.floatcircle_duration ) {
floating_options['transitionDuration'] = parseInt( settings.floatcircle_duration, 10 );
}
} else {
floating_options['transition'] = false;
}
return ' data-plugin-float-element data-plugin-options=' + JSON.stringify( floating_options );
}
}
jQuery( document ).ready( function( $ ) {
/**
* Toolbar
*
* @since 2.6.0
*/
( function() {
var isCapture = 0;
var $toolbar = $( '.porto-toolbar' );
if ( $toolbar.length == 0 ) {
return;
}
$( document.body ).on( 'mousemove', function( e ) {
if ( isCapture == 0 ) {
return;
}
if ( e.buttons == 1 ) { // primary mouse button was pressed.
isCapture = 2;
$toolbar.css( { top: e.pageY, left: e.pageX } );
}
} ).on( 'mouseup', function( e ) {
if ( isCapture != 2 ) {
if ( e.target.classList && e.target.classList.contains( 'porto-toolbar-toggle' ) ) {
$toolbar.toggleClass( 'switched' );
}
}
isCapture = 0;
} ).on( 'mousedown', function( e ) {
if ( e.target.classList && e.target.classList.contains( 'porto-toolbar-toggle' ) ) {
isCapture = 1;
}
} );
var _iframe = $( '#elementor-preview-iframe' );
if ( _iframe.length ) {
_iframe.on( 'load', function() {
_iframe[0].contentWindow.jQuery( 'body' ).on( 'mousemove', function( e ) {
if ( isCapture == 0 ) {
return;
}
var barHeight = $( '#e-responsive-bar' ).height();
if ( e.buttons == 1 ) {
isCapture = 2;
$toolbar.css( { top: e.clientY + barHeight, left: e.screenX } );
}
if ( e.buttons == 0 && isCapture == 2 ) { // bubbling
isCapture = 0;
$toolbar.css( { top: e.clientY + barHeight, left: e.screenX } );
}
} ).on( 'mouseup', function( e ) {
if ( isCapture != 2 ) {
if ( e.target.classList && e.target.classList.contains( 'porto-toolbar-toggle' ) ) {
$toolbar.toggleClass( 'switched' );
}
}
isCapture = 0;
} ).on( 'click', 'a.porto-setting-link', function( e ) {
e.preventDefault();
var href = $( this ).attr( 'href' );
if ( '' != href ) {
window.open( href );
}
} );
} );
}
$( '.go-to-page-css' ).on( 'click', function() {
if ( typeof $e == 'object' ) {
$e.route( 'panel/page-settings/settings' );
elementor.getPanelView().currentPageView.activateSection( 'porto_settings' );
elementor.getPanelView().currentPageView._renderChildren();
}
} );
$( '.go-to-floating' ).on( 'click', function() {
if ( typeof $e == 'object' ) {
if ( elementor.selection.getElements()[0] && elementor.selection.getElements()[0].model ) {
$e.routes.to( 'panel/editor/porto_custom_tab', {
model: elementor.selection.getElements()[0].model,
view: elementor.selection.getElements()[0].view
} );
} else {
window.alert( wp.i18n.__( 'Please select any widget.', 'porto-functionality' ) );
}
}
} );
$( '.go-to-builder-setting' ).on( 'click', function() {
if ( typeof $e == 'object' ) {
if ( typeof porto_builder_condition == 'object' ) {
var sectionName = 'porto_edit_area';
$e.route( 'panel/page-settings/settings' );
if ( 'archive' == porto_builder_condition.builder_type ) {
sectionName = 'archive_preview_settings';
} else if ( 'single' == porto_builder_condition.builder_type ) {
sectionName = 'single_preview_settings';
} else if ( 'popup' == porto_builder_condition.builder_type ) {
sectionName = 'porto_popup_settings';
}
elementor.getPanelView().currentPageView.activateSection( sectionName );
elementor.getPanelView().currentPageView._renderChildren();
} else {
$e.route( 'panel/menu' );
}
}
} );
} )();
elementor.hooks.addFilter( 'panel/elements/regionViews', function( panel ) {
var categories = panel.categories.options.collection;
var categoryIndex = categories.findIndex( {
name: "porto-elements"
} );
categoryIndex && categories.add( {
name: "porto-notice",
title: wp.i18n.__( 'Porto Library', 'porto-functionality' ),
defaultActive: 1,
items: [],
promotion: null
}, {
at: categoryIndex - 1
} );
return panel;
} );
if ( typeof Marionette != 'undefined' && Marionette.ItemView && Marionette.Behavior ) {
class portoStudioItem extends Marionette.ItemView {
className() {
return 'elementor-panel-category-items-porto-notice';
}
getTemplate() {
return '#tmpl-porto-elementor-studio-notice';
}
}
class portoStudioHandle extends Marionette.Behavior {
initialize() {
if ( 'porto-notice' == this.view.options.model.get( 'name' ) ) {
this.view.emptyView = portoStudioItem;
}
}
}
elementor.hooks.addFilter( 'panel/category/behaviors', function( behaviors ) {
return Object.assign( {}, behaviors, {
studioNotice: {
behaviorClass: portoStudioHandle
}
} );
} );
}
// add Porto Studio menu
elementor.on( 'panel:init', function() {
$( '<div id="porto-elementor-panel-porto-studio" class="elementor-panel-footer-tool tooltip-target" data-tooltip="Porto Studio"><i class="porto-icon-studio" aria-hidden="true"></i><span class="elementor-screen-only">Porto Studio</span></div>' ).insertAfter( '#elementor-panel-footer-saver-preview' ).tipsy( {
gravity: 's',
title: function title() {
return this.getAttribute( 'data-tooltip' );
}
} );
elementor.channels.editor.on( 'section:activated', function( activeSection, editor ) {
// Section Changed
var id = editor.getOption('editedElementView').container.id,
$obj = document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + id ),
winWidth = jQuery( document.getElementById( 'elementor-preview-iframe' ).contentWindow ).width();
if ( 'section_hb_search_form_style' == activeSection ) {
// Serach Form
if ( 0 == $obj.find( '.searchform.search-layout-advanced' ).length || ( $obj.find( '.searchform.search-layout-advanced' ).length > 0 && winWidth < 992 ) ) {
var $searchToggle = $obj.find( '.search-toggle' ).addClass( 'show' );
if ( ! $searchToggle.hasClass( 'opened' ) ) {
$obj.find( '.search-toggle' ).click();
}
}
editor.model.on( 'editor:close', function() {
disableSearchForm( document.getElementById('elementor-preview-iframe').contentWindow.jQuery( '.elementor-element-' + this.attributes.id ) );
} );
editor.model.on( 'remote:render', function() {
if ( 'section_hb_search_form_style' == this.attributes.editSettings.attributes.panel.activeSection ) {
setTimeout(() => {
var $obj = document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + this.attributes.id ),
$searchToggle = $obj.find( '.search-toggle' );
if ( ! $searchToggle.hasClass( 'opened' ) && ( 0 == $obj.find( '.searchform.search-layout-advanced' ).length || ( $obj.find( '.searchform.search-layout-advanced' ).length > 0 && winWidth < 992 ) ) ) {
$( 'body' ).removeClass( 'porto-search-opened porto-search-overlay-wrap' );
$searchToggle.click();
$searchToggle.addClass( 'show' )
}
}, 400 );
}
} );
} else if ( 'section_hb_dropdown' == activeSection ) {
// Switcher, Account Dropdown
if ( $obj.find( '.porto-view-switcher' ).length > 0 ) {
$obj.find( '.porto-view-switcher' ).addClass( 'show' );
editor.model.on( 'editor:close', function() {
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' .porto-view-switcher.show' ).removeClass( 'show' );
} );
} else if ( $obj.find( '.account-dropdown' ).length > 0 ) {
$obj.find( '.account-dropdown > li' ).addClass( 'show' );
editor.model.on( 'editor:close', function() {
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' .account-dropdown > li.show' ).removeClass( 'show' );
} );
editor.model.on( 'remote:render', function() {
if ( 'section_hb_dropdown' == this.attributes.editSettings.attributes.panel.activeSection ) {
setTimeout(() => {
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' .account-dropdown > li' ).addClass( 'show' );
}, 400 );
}
} );
}
} else if ( 'section_hb_menu_style_top' == activeSection && ( 'undefined' == typeof editor.model.attributes.settings.attributes.location || 'main-toggle-menu' == editor.model.attributes.settings.attributes.location ) ) {
$obj.find( '#main-toggle-menu ul li.menu-item-has-children.show' ).removeClass( 'show' );
$obj.find( '.main-menu > li.has-sub.show' ).removeClass( 'show' );
// Top Menu
$obj.find( '#main-toggle-menu' ).addClass( 'show' );
editor.on( 'childview:control:tab:clicked', function ( model, $tab ) {
$obj = document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + this.getOption('editedElementView').container.id );
if ( 'Hover' == $tab.model.attributes.label ) {
$obj.find( '.sidebar-menu > li' ).eq(0).addClass( 'active' );
} else {
$obj.find( '.sidebar-menu > li' ).eq(0).removeClass( 'active' );
}
} );
editor.model.on( 'editor:close', function() {
document.getElementById('elementor-preview-iframe').contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' #main-toggle-menu' ).removeClass( 'show' );
document.getElementById('elementor-preview-iframe').contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' .main-menu > li' ).eq(0).removeClass( 'active' );
} );
editor.model.on( 'remote:render', function() {
if ( 'section_hb_menu_style_top' == this.attributes.editSettings.attributes.panel.activeSection ) {
setTimeout(() => {
var $obj = document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + this.attributes.id );
$obj.find( '#main-toggle-menu ul li.menu-item-has-children.show' ).removeClass( 'show' );
$obj.find( '.main-menu > li.has-sub.show' ).removeClass( 'show' );
// Top Menu
$obj.find('#main-toggle-menu').addClass( 'show' );
}, 400 );
}
} );
} else if ( 'section_hb_menu_style_submenu' == activeSection ) {
// Sub Menu
$obj.find('#main-toggle-menu').addClass( 'show' );
$obj.find('#main-toggle-menu ul li.menu-item-has-children').eq(0).addClass( 'show' );
$obj.find('.main-menu > li.has-sub' ).eq(0).addClass( 'show' );
editor.model.on( 'editor:close', function() {
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' #main-toggle-menu.show' ).removeClass( 'show' );
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery( '.elementor-element-' + this.attributes.id + ' #main-toggle-menu ul li.menu-item-has-children.show' ).removeClass( 'show' );
document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + this.attributes.id + ' .main-menu > li.has-sub.show').removeClass( 'show' );
} );
editor.model.on( 'remote:render', function() {
if ( 'section_hb_menu_style_submenu' == this.attributes.editSettings.attributes.panel.activeSection ) {
setTimeout(() => {
var $obj = document.getElementById( 'elementor-preview-iframe' ).contentWindow.jQuery('.elementor-element-' + this.attributes.id );
$obj.find('#main-toggle-menu').addClass( 'show' );
$obj.find('#main-toggle-menu ul li.menu-item-has-children').eq(0).addClass( 'show' );
$obj.find('.main-menu > li.has-sub' ).eq(0).addClass( 'show' );
}, 400 );
}
} );
} else {
// Disable Switcher Menu
if ( $obj.find( '.porto-view-switcher' ).hasClass( 'show' ) ) {
$obj.find( '.porto-view-switcher' ).removeClass( 'show' );
}
// Disable Account Dropdown Menu
if ( $obj.find( '.account-dropdown > li' ).hasClass( 'show' ) ) {
$obj.find( '.account-dropdown > li' ).removeClass( 'show' );
}
// Search Form
if ( $obj.find( '.search-toggle.show' ).length > 0 ) {
disableSearchForm( $obj );
}
// Menu widget
if ( $obj.find( '#main-toggle-menu' ) || $obj.find( '.main-menu' ) ) {
$obj.find( '#main-toggle-menu.show, #main-toggle-menu ul li.show, .main-menu>li.show' ).removeClass( 'show' );
}
}
} );
/**
* Hide Search Form toggle
*
* @since 3.2.0
*/
function disableSearchForm( $elWrap ) {
var $searchForm = $elWrap.find( '.searchform' );
$elWrap.find( '.search-toggle.show' ).removeClass( 'show' );
if ( $searchForm.hasClass( 'search-layout-reveal' ) || $searchForm.hasClass( 'search-layout-overlay' ) ) {
$searchForm.find( '.btn-close-search-form' ).click();
$( 'html' ).removeClass( 'porto-search-opened porto-search-overlay-wrap' );
} else if ( ! $searchForm.hasClass( 'search-layout-advanced' ) || ( $searchForm.hasClass( 'search-layout-advanced' ) && jQuery( document.getElementById( 'elementor-preview-iframe' ).contentWindow ).width() < 992 ) ) {
$elWrap.find( '.search-toggle' ).click();
}
}
} );
elementor.on( 'frontend:init', function() {
if ( typeof $e != 'undefined' ) {
$e.commands.on( 'run:before', function( component, command, args ) {
if ( 'document/elements/delete' == command && args && args.containers && args.containers.length ) {
args.containers.forEach( function( cnt ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_before_delete', cnt.model );
} );
}
if ( 'document/elements/settings' == command && args && args.container && 'section' == args.container.type ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_before_edit_section', args.container );
}
if ( 'document/elements/move' == command && args && args.container ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_before_move', args.container.id );
}
if ( 'document/elements/duplicate' == command && args && args.containers ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_before_duplicate', args.containers );
}
} );
$e.commands.on( 'run:after', function( component, command, args ) {
if ( 'document/elements/create' == command && args && args.model && args.model.id ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_after_add', args.model );
}
if ( 'document/elements/move' == command && args && args.container ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_after_move', args.container.id );
}
if ( 'document/elements/delete' == command && args && args.containers ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_after_delete', args.containers );
}
if ( 'document/elements/duplicate' == command && args && args.containers ) {
elementorFrontend.hooks.doAction( 'porto_elementor_element_after_duplicate', args.containers );
}
if ( 'document/elements/empty' == command && typeof args.force != 'undefined' && args.force ) {
elementor.settings.page.model.set('porto_custom_css', '');
elementorFrontend.hooks.doAction('refresh_page_css', '');
$('textarea[data-setting="porto_custom_css"]').val('');
}
} );
}
var custom_css = elementor.settings.page.model.get( 'porto_custom_css' );
if ( typeof custom_css != 'undefined' ) {
elementorFrontend.on( 'components:init', function() {
elementorFrontend.hooks.doAction( 'refresh_dynamic_css', custom_css );
} );
}
// var header_type = elementor.settings.page.model.get( 'porto_header_type' );
// if ( 'side' == header_type ) {
// $( '#elementor-preview-responsive-wrapper' ).addClass( 'mobile-width' );
// }
var popup_width = elementor.settings.page.model.get( 'popup_width' );
setTimeout( function() {
typeof popup_width != 'undefined' && elementorFrontend.hooks.doAction( 'refresh_popup_options', 'popup_width', popup_width );
elementorFrontend.hooks.doAction( 'refresh_popup_options', 'popup_pos_first', $ );
}, 1000 );
$( document.body )
.on( 'input', 'input[data-setting="popup_width"]', function( e ) {
elementorFrontend.hooks.doAction( 'refresh_popup_options', 'popup_width', $( this ).val() );
} )
.on( 'input', 'input[data-setting="popup_pos_horizontal"], input[data-setting="popup_pos_vertical"]', function( e ) {
elementorFrontend.hooks.doAction( 'refresh_popup_options', $( this ).data( 'settings' ), $ );
} )
.on( 'click', '.elementor-control-archive_preview_apply .elementor-button', function( e ) {
$.post( porto_elementor_vars.ajax_url, {
action: 'porto_archive_builder_preview_apply',
nonce: porto_elementor_vars.nonce,
post_id: ElementorConfig.document.id,
mode: $( '.elementor-control-archive_preview_type select' ).val(),
}, function() {
// elementor.reloadPreview();
window.location.reload();
} );
} )
.on( 'click', '.elementor-control-single_preview_apply .elementor-button', function( e ) {
$.post( porto_elementor_vars.ajax_url, {
action: 'porto_single_builder_preview_apply',
nonce: porto_elementor_vars.nonce,
post_id: ElementorConfig.document.id,
mode: $( '.elementor-control-single_preview_type select' ).val(),
}, function() {
// elementor.reloadPreview();
// if ( confirm( wp.i18n.__( 'Did you save the page before reloading? Click yes if you want to reload, otherwise click no.' ) ) ) {
window.location.reload();
// }
} );
} );
// edit area width
var edit_area_width = elementor.settings.page.model.get( 'porto_edit_area_width' );
if ( edit_area_width ) {
var getValUnit = function( $arr, $default ) {
if ( $arr ) {
if ( $arr['size'] ) {
return $arr['size'] + ( $arr['unit'] ? $arr['unit'] : 'px' );
} else {
return '';
}
}
return typeof $default == 'undefined' ? '' : $default;
}
var triggerAction = function( e ) {
var $selector = $( this );
if ( e.type == 'mousemove' || e.type == 'click' ) {
$selector = $selector.closest( '.elementor-control-input-wrapper' ).find( '.elementor-slider-input input' );
}
var value = {
size: $selector.val(),
unit: $selector.closest( '.elementor-control-input-wrapper' ).siblings( '.elementor-units-choices' ).find( 'input:checked' ).val()
};
elementorFrontend.hooks.doAction( 'refresh_edit_area', getValUnit( value ) );
}
elementorFrontend.on( 'components:init', function() {
setTimeout( function() {
typeof edit_area_width != 'undefined' && elementorFrontend.hooks.doAction( 'refresh_edit_area', getValUnit( edit_area_width ) );
}, 850 );
} );
$( document.body ).on( 'input', '.elementor-control-porto_edit_area_width input[data-setting="size"]', triggerAction )
.on( 'mousemove', '.elementor-control-porto_edit_area_width .noUi-active', triggerAction )
.on( 'click', '.elementor-control-porto_edit_area_width .noUi-target', triggerAction );
}
$( 'body' ).on ( 'change', '[data-setting=porto_header_type]', function() {
if ( 'side' == $( this ).val() ) {
$( 'body' ).addClass( 'preview-side-header' );
} else {
$( 'body' ).removeClass( 'preview-side-header' );
}
} );
$( 'body' ).on( 'input', '#elementor-panel-elements-search-input', function() {
if ( 'side' != elementor.settings.page.model.get( 'porto_header_type' ) ) {
return;
}
let $elements = $( '.Simple-Line-Icons-link' ).closest( '.elementor-element-wrapper' );
if ( $elements.length ) {
if ( 'Porto Navigation Menu' == $elements.find( '.title' ).text() && $( 'body' ).hasClass( 'elementor-device-desktop' ) ) {
$elements.hide();
}
}
} );
$( 'body' ).on( 'click', '.e-responsive-bar-switcher__option', function() {
if ( 'side' != elementor.settings.page.model.get( 'porto_header_type' ) ) {
return;
}
let isDesktop = $( this ).attr( 'id' ) == 'e-responsive-bar-switcher__option-desktop';
let $elements = $( '.Simple-Line-Icons-link' ).closest( '.elementor-element-wrapper' );
if ( $elements.length ) {
if ( 'Porto Navigation Menu' == $elements.find( '.title' ).text() ) {
if ( isDesktop ) {
$elements.hide();
} else {
$elements.show();
}
}
}
} );
// Side Header Width
if ( typeof porto_builder_condition != 'undefined' && 'header' == porto_builder_condition.builder_type && 'side' == porto_builder_condition.header_type ) {
$( 'body' ).addClass( 'preview-side-header' );
let header_side_width = porto_builder_condition.header_side_width ? porto_builder_condition.header_side_width : '255';
let triggerAction = function() {
elementorFrontend.hooks.doAction( 'refresh_side_header', $(this).val() );
}
elementorFrontend.on( 'components:init', function() {
setTimeout( function() {
typeof header_side_width != 'undefined' && elementorFrontend.hooks.doAction( 'refresh_side_header', header_side_width );
}, 850 );
} );
$( document.body ).on( 'input', '.elementor-control-porto_header_side_width input[type="number"]', triggerAction );
}
// Change Header Type
if ( typeof porto_builder_condition != 'undefined' && 'header' == porto_builder_condition.builder_type ) {
$( 'body' ).addClass( 'preview-header' );
let triggerAction = function() {
elementorFrontend.hooks.doAction( 'refresh_header_type', $( this ).val() );
if ( $( this ).val() == 'side' ) {
let value = $( '.elementor-control-porto_header_side_width input[type="number"]' ).val();
value = value ? value : '255';
elementorFrontend.hooks.doAction( 'refresh_side_header', value );
}
}
$( document.body ).on( 'change', '.elementor-control-porto_header_type select', triggerAction );
}
} );
var portoMasonryTimer = null;
$( document.body )
.on( 'input', '.elementor-control-width1 input[data-setting="size"]', function( e ) {
if ( portoMasonryTimer ) {
clearTimeout( portoMasonryTimer );
}
var $this = $( this );
portoMasonryTimer = setTimeout( function() {
elementorFrontend.hooks.doAction( 'masonry_refresh', false, $this.val() );
}, 300 );
} );
$( document.body ).on( 'input', 'textarea[data-setting="porto_custom_css"]', function( e ) {
elementorFrontend.hooks.doAction( 'refresh_dynamic_css', $( this ).val() );
} ).on( 'click', '.porto-elementor-btn-reload', function( e ) {
e.preventDefault();
if ( !elementor.saver.isEditorChanged() ) {
return false;
}
var $this = $( this );
$this.attr( 'disabled', true );
setTimeout( function() {
$this.removeAttr( 'disabled' );
}, 10000 );
$e.run( 'document/save/auto', {
force: true,
onSuccess: function onSuccess() {
elementor.reloadPreview();
elementor.once( 'preview:loaded', function() {
$e.route( 'panel/page-settings/settings' );
$this.removeAttr( 'disabled' );
} );
}
} );
} ).on( 'change', 'select[data-setting="porto_header_type"]', function( e ) {
// if ( 'side' == $( this ).val() ) {
// $( '#elementor-preview-responsive-wrapper' ).addClass( 'mobile-width' );
// } else {
// $( '#elementor-preview-responsive-wrapper' ).removeClass( 'mobile-width' );
// }
} );
} );