Astra_Header_Social_Component_Loader::preview_scripts()

Customizer Preview


Description


Source

File: classes/builder/type/header/social-icon/classes/class-astra-header-social-component-loader.php

	public function preview_scripts() {
		/**
		 * Load unminified if SCRIPT_DEBUG is true.
		 */
		/* Directory and Extension */
		$dir_name    = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified';
		$file_prefix = ( SCRIPT_DEBUG ) ? '' : '.min';
		wp_enqueue_script( 'astra-social-icon-addon-header-customizer-preview-js', ASTRA_HEADER_SOCIAL_URI . '/assets/js/customizer-preview.js', array( 'customize-preview', 'ahfb-addon-base-customizer-preview' ), ASTRA_EXT_VER, true );

		// Localize variables for divider JS.
		wp_localize_script(
			'astra-social-icon-addon-header-customizer-preview-js',
			'AstraBuilderSocialData',
			array(
				'header_social_count' => astra_addon_builder_helper()->num_of_header_social_icons,
			)
		);
	}

Changelog

Changelog
Version Description
3.0.0 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.