File "cf7-material-design-customizer-control.js"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/.wp-cli/wp-content/plugins/material-design-for-contact-form-7/v1/assets/js/cf7-material-design-customizer-control.js
File size: 360 bytes
MIME-type: text/plain
Charset: utf-8

// This closure gives access to jQuery as $
// Don't delete it
(function($) {

	// Do stuff
	$(document).ready(function(){

        var customize = wp.customize;
 
        customize.previewer.bind('preview-edit', function( data ) {
            var control = customize.control( data.name );
        
            control.focus();
        });
		
	});

}(jQuery));