b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/themes/spacious/inc/customizer/core/custom-controls/navigate/
File Upload :
Current File : E:/wordpress/wp-content/themes/spacious/inc/customizer/core/custom-controls/navigate/navigate.js

/**
 * Background image control JS to handle the navigate customize option.
 *
 * File `navigate.js`.
 *
 * @package Spacious
 */
(
	function ( $ ) {

		$( window ).on( 'load', function () {

			$( '.tg-navigate a' ).on( 'click', function ( e ) {
				e.preventDefault();

				var targetSection = $( this ).data( 'section' );

				if ( targetSection ) {
					wp.customize.section( targetSection ).focus();
				}
			} );

		} );
	}
)( jQuery );

Copyright © 2019 by b0y-101