/**
* Fires when enqueuing Customizer control scripts.
*
* @since 3.4.0
*/
do_action( 'customize_controls_enqueue_scripts'
);
// Let's roll.
header( 'Content-Type: ' .
get_option( 'html_type'
) . '; charset=' .
get_option( 'blog_charset'
) );
wp_user_settings();
_wp_admin_html_begin();
$body_class = 'wp-core-ui wp-customizer js';
if ( wp_is_mobile() ) :
$body_class .= ' mobile';
add_filter( 'admin_viewport_meta', '_customizer_mobile_viewport_meta'
);
endif;
if ( $wp_customize->
is_ios() ) { $body_class .= ' ios';
}