/** * Theme customizer binding File. * * @package Articled * @since Articled 1.0 * */ (function($) { wp.customize('articled_breadcrumbs_borderr', function(value) { value.bind(function(newval) { $('.breadcrumbs').css({ 'border-radius': newval }) }) }); wp.customize('articled_breadcrumbs_sap_color', function(value) { value.bind(function(newval) { $('.breadcrumbs li+li:before').css({ 'color': newval }) }) }); wp.customize('articled_breadcrumbs_font_size', function(value) { value.bind(function(newval) { $('..breadcrumbs li').css({ 'font-size': newval }) }) }); wp.customize('articled_breadcrumbs_color', function(value) { value.bind(function(newval) { $('.breadcrumbs').css({ 'color': newval }); $('.breadcrumbs a').css({ 'color': newval }) }) }); wp.customize('articled_breadcrumbs_cbgolor', function(value) { value.bind(function(newval) { $('.breadcrumbs').css({ 'background-color': newval }) }) }) })(jQuery)