/** * File customizer.js. * * Theme Customizer enhancements for a better user experience. * * Contains handlers to make Theme Customizer preview reload changes asynchronously. */ ( function( $ ) { "use strict"; // Custom Layout Options wp.customize( 'anirohotellight_layout', function( value ) { value.bind( function( to ) { $( '#page' ).removeClass( 'no-sidebar' ); $( '#page' ).removeClass( 'sidebar-left' ); $( '#page' ).removeClass( 'sidebar-right' ); $( '#page' ).addClass( to ); } ); } ); } )( jQuery );