HEX
Server: Apache
System: Linux p3plzcpnl505785.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xuvi7odgswsg (6947073)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //home/xuvi7odgswsg/www/wp-content/plugins/bb-ultimate-addon/assets/js/uabb-builder.js
(function( $ ) {

	UABBGlobal = {
			/**
			 * UABB Init Method for global setting
			 **/
			_init: function()
			{
				UABBGlobal._initGlobalButton();
				UABBGlobal._bindButtonEvents();
			},

			_initGlobalButton: function()
			{
				/* Global Setting */
				FLBuilder.addHook( 'actions-lightbox-settings', function( e, settings ){
					
					if ( 'fl-builder-tools-actions' == settings.className ) {
						settings.buttons[ 45 ] = {
							'key': 'uabb-global-settings',
							'label': FLBuilderStrings.uabbGlobalSettings
						};
					}

				} );
			},

			_bindButtonEvents: function()
			{
				$('body').delegate('.fl-builder-uabb-global-settings-button', 'click', UABBGlobal._globalSettingsClicked);
				$('body').delegate('.fl-builder-uabb-global-settings .fl-builder-settings-save', 'click', UABBGlobal._saveGlobalSettingsClicked);
				//$('body').delegate('.fl-builder-uabb-global-settings .fl-builder-settings-cancel', 'click', UABBGlobal._cancelGlobalSettingsClicked);

				FLBuilder.addHook('showUABBGlobalSettings', UABBGlobal.showUABBGlobalSettings);
			},

			showUABBGlobalSettings: function() {
	            $('.fl-builder--main-menu-panel-mask').trigger('click');
	            UABBGlobal._globalSettingsClicked();
	        },

			_globalSettingsClicked: function(){
				FLBuilder._actionsLightbox.close();
				FLBuilder._showLightbox();
				FLBuilder.ajax({
					action: 'render_uabb_global_settings'
				}, UABBGlobal._globalSettingsLoaded);
			},
			_globalSettingsLoaded: function(response)
			{
				var data = JSON.parse(response);
				FLBuilder._setSettingsFormContent(data.html);
			},

			_saveGlobalSettingsClicked: function()
			{
				var form     = $(this).closest('.fl-builder-settings'),
					valid    = form.validate().form(),
					data     = form.serializeArray(),
					settings = {},
					i        = 0;
					
				if(valid) {
						 
					for( ; i < data.length; i++) {
						settings[data[i].name] = data[i].value;
					}
					
					FLBuilder.showAjaxLoader();
					FLBuilder._layoutSettingsCSSCache = null;
					
					FLBuilder.ajax({
						action: 'save_uabb_global_settings',
						settings: settings
					}, FLBuilder._updateLayout);
						
					FLBuilder._lightbox.close();
				}
			},

			/*_cancelLayoutSettingsClicked: function()
			{
				var form = $( '.fl-builder-settings' );
			}, */
		}

	UABBHelp = {
			/**
			 * UABB Init Method for global setting
			 **/
			_init: function()
			{
				UABBHelp._initHelpButton();
				UABBHelp._bindButtonEvents();
			},

			_initHelpButton: function()
			{
				/* Global Setting */
				FLBuilder.addHook( 'actions-lightbox-settings', function( e, settings ){
					
					if ( 'fl-builder-help-actions' == settings.className ) {
									
						settings.buttons[ 45 ] = {
							'key': 'uabb-knowledge-base',
							'label': FLBuilderStrings.uabbKnowledgeBase
						};

						settings.buttons[ 46 ] = {
							'key': 'uabb-contact-support',
							'label': FLBuilderStrings.uabbContactSupport
						};
					}
				} );
			},

			_bindButtonEvents: function()
			{
				$('body').delegate('.fl-builder-uabb-knowledge-base-button', 'click', UABBHelp._viewKnowledgeBaseClicked);
				$('body').delegate('.fl-builder-uabb-contact-support-button', 'click', UABBHelp._visitContactSupportClicked);
			},

			/* Help Functions */
			_viewKnowledgeBaseClicked: function()
			{
				FLBuilder._actionsLightbox.close();
				window.open( FLBuilderStrings.uabbKnowledgeBaseUrl );
			},

			_visitContactSupportClicked: function()
			{
				FLBuilder._actionsLightbox.close();
				window.open( FLBuilderStrings.uabbContactSupportUrl );
			},

		}

	UABBButton = {
		rules: {
			text: {
				required: true
			},
			link: {
				required: true
			},
			border_size: {
				number: true
			}
		},

		init: function()
		{
			var form        = $('.fl-builder-settings'),
				btn_style   = form.find('select[name=btn_style]'),
				transparent_button_options = form.find('select[name=btn_transparent_button_options]'),
				hover_attribute = form.find('select[name=hover_attribute]'),
				btn_style_opt   = form.find('select[name=btn_flat_button_options]');

			// Init validation events.
			this._btn_styleChanged();
			this.imgicon_postion();
			
			// Validation events.
			btn_style.on('change',  $.proxy( this._btn_styleChanged, this ) );
			btn_style_opt.on('change',  $.proxy( this._btn_styleChanged, this ) );
			transparent_button_options.on( 'change', $.proxy( this._btn_styleChanged, this ) );
			hover_attribute.on( 'change', $.proxy( this._btn_styleChanged, this ) );
		},

		_btn_styleChanged: function()
		{
			var form        = $('.fl-builder-settings'),
				btn_style   = form.find('select[name=btn_style]').val(),
				btn_style_opt   = form.find('select[name=btn_flat_button_options]').val(),
				hover_attribute = form.find('select[name=hover_attribute]').val(),
				transparent_button_options = form.find('select[name=btn_transparent_button_options]').val(),
				icon       = form.find('input[name=btn_icon]');
				
			icon.rules('remove');
			
			if(btn_style == 'flat' && btn_style_opt != 'none' ) {
				icon.rules('add', { required: true });
			}

            if( btn_style == 'threed' ) {
            	form.find('#fl-field-btn_threed_button_options').show();
            	form.find("#fl-field-hover_attribute").hide();
            	form.find('#fl-field-btn_bg_color th label').text('Background Color');
	            form.find('#fl-field-btn_bg_hover_color th label').text('Background Hover Color');
            	form.find("#fl-field-btn_border_size").hide();
            	form.find("#fl-field-btn_transparent_button_options").hide();
            	form.find('#fl-field-btn_flat_button_options').hide();
            } else if( btn_style == 'flat' ) {
            	form.find('#fl-field-btn_flat_button_options').show();
            	form.find("#fl-field-hover_attribute").hide();
            	form.find('#fl-field-btn_bg_color th label').text('Background Color');
	            form.find('#fl-field-btn_bg_hover_color th label').text('Background Hover Color');
            	form.find('#fl-field-btn_threed_button_options').hide();
            	form.find("#fl-field-btn_border_size").hide();
            	form.find("#fl-field-btn_transparent_button_options").hide();
            } else if( btn_style == 'transparent' ) {
            	form.find("#fl-field-btn_border_size").show();
            	form.find("#fl-field-btn_transparent_button_options").show();
            	form.find('#fl-field-btn_threed_button_options').hide();
            	form.find('#fl-field-btn_flat_button_options').hide();
            	form.find('#fl-field-btn_bg_color th label').text('Border Color');
            	if( transparent_button_options == 'none' ) {
            		form.find("#fl-field-hover_attribute").show();
            		if( hover_attribute == 'bg' ) {
	            		form.find('#fl-field-btn_bg_hover_color th label').text('Background Hover Color');
	                } else {
	            		form.find('#fl-field-btn_bg_hover_color th label').text('Border Hover Color');
	                }
            	} else {
            		form.find("#fl-field-hover_attribute").hide();
	            	form.find('#fl-field-btn_bg_hover_color th label').text('Background Hover Color');
            	}
            } else {
            	form.find("#fl-field-hover_attribute").hide();
            	form.find('#fl-field-btn_bg_color th label').text('Background Color');
	            form.find('#fl-field-btn_bg_hover_color th label').text('Background Hover Color');
            	form.find("#fl-field-btn_border_size").hide();
            	form.find("#fl-field-btn_transparent_button_options").hide();
            	form.find('#fl-field-btn_threed_button_options').hide();
            	form.find('#fl-field-btn_flat_button_options').hide();
            }

			this.imgicon_postion();
		},
		imgicon_postion: function () {
            var form        = $('.fl-builder-settings'),
                creative_button_styles     = form.find('select[name=btn_style]').val(),
                transparent_button_options = form.find().val('select[name=btn_transparent_button_options]'),
                flat_button_options     = form.find('select[name=btn_flat_button_options]').val();

                if ( creative_button_styles == 'flat' && flat_button_options != 'none' ) {
                    setTimeout(function(){
                        jQuery("#fl-field-btn_icon_position").hide();
                    },100);
                }else{
                    jQuery("#fl-field-btn_icon_position").show();
                }
        },
	}

	$(document).ready(function() {

		if( typeof uabb_presets != 'undefined' && uabb_presets.show_presets == true ){
			$('html').addClass( 'uabb-show-presets' );
		}

		if( typeof uabb_global != 'undefined' && uabb_global.show_global_button == true ){
			UABBGlobal._init();
		}

		/* Live Preview Button */
		if( $('.uabb-live-preview-button').length ) {
			$('html').addClass('uabb-html-live-preview');

			var title_width = $('.fl-builder-bar-title').outerWidth();
			$(".uabb-live-preview-button").css({ left: title_width });


			$(".uabb-live-preview-button").click(function() {   
				$('html').toggleClass('uabb-active-live-preview');
				var live_preview 	= $(this),
					html 			= $('html');
				live_preview.toggleClass('active');

				if ( html.hasClass('uabb-active-live-preview') ) {
					if ( $('.fl-builder-panel').is(':visible') ) {
						$('.fl-builder-panel').stop(true, true).animate({ right : '-350px' }, 500);
					}
					$('.fl-builder-bar').stop(true, true).slideUp(500);
					html.animate({ marginTop: '0px !important' }, 1000);
					
					FLBuilder._destroyOverlayEvents();
					//live_preview.removeClass('fa-eye').addClass('fa-eye-slash');
				} else {
					$('.fl-builder-panel').stop(true, true).animate({ right : 0 }, 500);
					$('.fl-builder-bar').stop(true, true).slideDown(500);
					
					FLBuilder._bindOverlayEvents();
					//live_preview.removeClass('fa-eye-slash').addClass('fa-eye');
				}
			});
		}
		
		UABBHelp._init();
	});

})( jQuery );