HEX
Server: Apache
System: Linux vps.webnoxsoftware.com 4.18.0-553.70.1.el8_10.x86_64 #1 SMP Mon Aug 18 04:41:49 EDT 2025 x86_64
User: microfabengineer (1020)
PHP: 8.3.24
Disabled: NONE
Upload Files
File: /home/microfabengineer/public_html/wp-content/themes/Avada/assets/admin/js/upload.js
jQuery( document ).ready( function() {
	var id;

	window.avadaUploadfield = '';
	window.mediaUploader;

	jQuery( 'body' ).on( 'click', '.fusion_upload_button', function() { console.log("here");
		window.avadaUploadfield = jQuery( '.upload_field', jQuery( this ).parent() );
		window.avadaUploadfieldId = jQuery( '.upload_field_id', jQuery( this ).parent() );

		if ( window.mediaUploader ) {
			window.mediaUploader.open();
			return;
		}

		// Extend the wp.media object
		window.mediaUploader = wp.media( {
			title: 'Choose Image',
			button: {
				text: 'Choose Image'
			}, multiple: false
		} );
		wp.media.frames.file_frame = window.mediaUploader;

		window.mediaUploader.on( 'select', function() {
			var attachment = window.mediaUploader.state().get( 'selection' ).first().toJSON();
			window.sendToEditor( attachment );
		} );

		window.mediaUploader.on( 'open', function() {
			var lib,
				selected,
				attachment,
				selection;

			// Get selected media.
			selected  = window.avadaUploadfield.val();
			if ( selected.startsWith( 'http' ) ) {
				selected  = window.avadaUploadfieldId.val();
			}
			if ( selected ) {

				// Get library.
				lib = window.mediaUploader.state().get( 'library' );
				lib.comparator = function( a, b ) {
					var aInQuery = !! this.mirroring.get( a.cid ),
						bInQuery = !! this.mirroring.get( b.cid );

					if ( ! aInQuery && bInQuery ) {
						return -1;
					}
					if ( aInQuery && ! bInQuery ) {
						return 1;
					}
					return 0;
				};

				// Get attachment and add to library.
				attachment = wp.media.attachment( selected );
				attachment.fetch();
				lib.add( attachment ? [ attachment ] : [] );

				// Make it selected.
				selection = window.mediaUploader.state().get( 'selection' );
				selection.add( attachment ? [ attachment ] : [] );
			} else {
				selection = window.mediaUploader.state().get( 'selection' );
				selection.add( [] );
			}
		} );

		// Open the uploader dialog
		window.mediaUploader.open();

		return false;
	} );

	window.avadaSendToEditorBackup = window.sendToEditor;
	window.sendToEditor = function( attachment ) {
		var imageUrl             = '',
			imageId              = '',
			imageAlt             = '',
			imageWidth           = '',
			imageHeight          = '',
			featuredImageWrapper = jQuery( window.avadaUploadfield ).parents( '.fusion-featured-image-meta-box' );
		if ( window.avadaUploadfield ) {
			if ( 0 < attachment.url.length ) {
				imageUrl    = attachment.url;
				imageId     = attachment.id;
				imageAlt    = attachment.alt;
				imageWidth  = attachment.width;
				imageHeight = attachment.height;
			}

			if ( featuredImageWrapper.length ) {
				featuredImageWrapper.find( '.fusion-preview-image' ).attr( {
					src: imageUrl,
					alt: imageAlt,
					width: imageWidth,
					height: imageHeight,
					srcset: '',
					sizes: '',
					style: ''
				} );
				if ( featuredImageWrapper.hasClass( 'upload-plus-style' ) ) {
					jQuery( window.avadaUploadfield ).val( imageUrl ).trigger( 'change' );
					jQuery( window.avadaUploadfieldId ).val( imageId ).trigger( 'change' );
				} else {
					jQuery( window.avadaUploadfield ).val( imageId ).trigger( 'change' );
				}

				featuredImageWrapper.find( '.fusion-remove-featured-image' ).show();
				featuredImageWrapper.find( '.fusion-set-featured-image' ).hide();

			} else {
				jQuery( window.avadaUploadfield ).val( imageUrl ).trigger( 'change' );
				jQuery( window.avadaUploadfield.next() ).val( imageId ).trigger( 'change' );
			}
			window.avadaUploadfield = '';

		} else {
			window.avadaSendToEditorBackup( attachment );
		}
	};

	// Remove the featured image preview and also the id from form input.
	jQuery( '.fusion-remove-featured-image' ).on( 'click', function( e ) {
		var featuredImageWrapper = jQuery( this ).parents( '.fusion-featured-image-meta-box' );

		e.preventDefault();

		featuredImageWrapper.find( '.fusion-preview-image' ).attr( {
			src: '',
			alt: '',
			width: '',
			height: '',
			srcset: '',
			sizes: '',
			style: 'display:none;'
		} );

		featuredImageWrapper.find( '.upload_field' ).val( '' );

		featuredImageWrapper.find( '.fusion-remove-featured-image' ).hide();
		featuredImageWrapper.find( '.fusion-set-featured-image' ).show();
	} );

	if ( jQuery.cookie( 'fusion_metabox_tab_' + jQuery( '#post_ID' ).val() ) ) {
		id = jQuery.cookie( 'fusion_metabox_tab_' + jQuery( '#post_ID' ).val() );

		jQuery( '.pyre_metabox_tabs li' ).removeClass( 'active' );
		jQuery( '.pyre_metabox_tabs li a[href=' + id + ']' ).parent().addClass( 'active' );

		jQuery( '.pyre_metabox_tabs li a[href=' + id + ']' ).parents( '.inside' ).find( '.pyre_metabox_tab' ).removeClass( 'active' ).hide();
		jQuery( '.pyre_metabox_tabs li a[href=' + id + ']' ).parents( '.inside' ).find( '#pyre_tab_' + id ).addClass( 'active' ).fadeIn();

		calcElementHeights();
	} else {
		jQuery( '.pyre_metabox_tabs li:first-child' ).addClass( 'active' );
		jQuery( '.pyre_metabox .pyre_metabox_tab:first-child' ).addClass( 'active' ).fadeIn();
	}

	jQuery( '.pyre_metabox_tabs li a' ).on( 'click', function( e ) {
		var thisID = jQuery( this ).attr( 'href' );

		e.preventDefault();

		jQuery.cookie( 'fusion_metabox_tab_' + jQuery( '#post_ID' ).val(), thisID, { expires: 7 } );

		jQuery( this ).parents( 'ul' ).find( 'li' ).removeClass( 'active' );
		jQuery( this ).parent().addClass( 'active' );

		jQuery( this ).parents( '.inside' ).find( '.pyre_metabox_tab' ).removeClass( 'active' ).hide();
		jQuery( this ).parents( '.inside' ).find( '#pyre_tab_' + thisID ).addClass( 'active' ).fadeIn();

		calcElementHeights();
	} );

	// Calc height if the whole panel toggle is closed on load and opened later.
	jQuery( '#post-body #advanced-sortables #pyre_page_options .handlediv, #post-body #advanced-sortables #pyre_page_options .hndle' ).on( 'click', function() {
		setTimeout( function() {
			calcElementHeights();
		}, 250 );
	} );

	// Initialize heights on load.
	calcElementHeights();
} );

function calcElementHeights() {
	var tabContentHeight,
		tabsHeight;

	// Set tabs pane height same as the tab content height.
	jQuery( '.pyre_metabox_tabs' ).removeAttr( 'style' );
	tabContentHeight = jQuery( '.pyre_metabox' ).outerHeight();
	tabsHeight = jQuery( '.pyre_metabox_tabs' ).height();
	if ( tabContentHeight > tabsHeight ) {
		jQuery( '.pyre_metabox_tabs' ).css( 'height', tabContentHeight );
	}

	// Set heights of select arrows correctly.
	jQuery( '.pyre_field .fusion-shortcodes-arrow' ).each( function() {
		if ( 0 < jQuery( this ).next().innerHeight() ) {
			jQuery( this ).css( {
				height: jQuery( this ).next().innerHeight(),
				width: jQuery( this ).next().innerHeight(),
				'line-height': jQuery( this ).next().innerHeight() + 'px'
			} );
		}
	} );
}