/*
** Scripts within the customizer controls window.
*/
(function( $ ) {
wp.customize.bind( 'ready', function() {
/*
** Reusable Functions
*/
var optPrefix = '#customize-control-audio_player_options-';
// Label
function audio_player_customizer_label( id, title ) {
// Site Identity
if ( id === 'custom_logo' || id === 'site_icon' ) {
$( '#customize-control-'+ id ).before('
'+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// General Setting
if ( id === 'audio_player_scroll_hide' || id === 'audio_player_preloader_hide' || id === 'audio_player_sticky_header' || id === 'audio_player_products_per_row' || id === 'audio_player_scroll_top_position') {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Topbar Option
if ( id === 'audio_player_topbar_register_button' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Colors
if ( id === 'audio_player_theme_color' || id === 'background_color' || id === 'background_image' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Header Image
if ( id === 'header_image' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Social Icon
if ( id === 'audio_player_facebook_icon' || id === 'audio_player_twitter_icon' || id === 'audio_player_intagram_icon' || id === 'audio_player_linkedin_icon' || id === 'audio_player_pintrest_icon') {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Header
if ( id === 'audio_player_header_location_button' || id === 'audio_player_topbar_phone_text' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Slider
if ( id === 'audio_player_slider_heading' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Feature
if ( id === 'audio_player_feature_long_heading' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Footer
if ( id === 'audio_player_footer_text_setting' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Post Setting
if ( id === 'audio_player_post_page_title' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Single Post Setting
if ( id === 'audio_player_single_post_thumb' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
// Page Setting
if ( id === 'audio_player_single_page_title' ) {
$( '#customize-control-'+ id ).before(''+ title +'');
} else {
$( '#customize-control-audio_player_options-'+ id ).before(''+ title +'');
}
}
/*
** Tabs
*/
// General Setting
audio_player_customizer_label( 'audio_player_preloader_hide', 'Preloader' );
audio_player_customizer_label( 'audio_player_scroll_hide', 'Scroll To Top' );
audio_player_customizer_label( 'audio_player_scroll_top_position', 'Scroll to top Position' );
// Site Identity
audio_player_customizer_label( 'custom_logo', 'Logo Setup' );
audio_player_customizer_label( 'site_icon', 'Favicon' );
// Topbar Option
audio_player_customizer_label( 'audio_player_topbar_register_button', 'Register Button' );
// Colors
audio_player_customizer_label( 'audio_player_theme_color', 'Theme Color' );
audio_player_customizer_label( 'background_color', 'Colors' );
audio_player_customizer_label( 'background_image', 'Image' );
//Header Image
audio_player_customizer_label( 'header_image', 'Header Image' );
// Social Icon
audio_player_customizer_label( 'audio_player_facebook_icon', 'Facebook' );
audio_player_customizer_label( 'audio_player_twitter_icon', 'Twitter' );
audio_player_customizer_label( 'audio_player_intagram_icon', 'Intagram' );
audio_player_customizer_label( 'audio_player_linkedin_icon', 'Linkedin' );
audio_player_customizer_label( 'audio_player_pintrest_icon', 'Pinterest' );
// Header
audio_player_customizer_label( 'audio_player_header_location_button', 'Location' );
audio_player_customizer_label( 'audio_player_topbar_phone_text', 'Phone Number' );
//Slider
audio_player_customizer_label( 'audio_player_slider_heading', 'Slider' );
// Feature
audio_player_customizer_label( 'audio_player_feature_long_heading', 'Feature' );
//Footer
audio_player_customizer_label( 'audio_player_footer_text_setting', 'Footer' );
//Single Post Setting
audio_player_customizer_label( 'audio_player_single_post_thumb', 'Single Post Setting' );
// Post Setting
audio_player_customizer_label( 'audio_player_post_page_title', 'Post Setting' );
// Page Setting
audio_player_customizer_label( 'audio_player_single_page_title', 'Page Setting' );
}); // wp.customize ready
})( jQuery );