Files
sage/resources/scripts/customizer.js
Brandon 9b1241997e chore(deps): Bump dependencies
revert(assets): Rename js/ back to scripts/
revert(assets): Rename css/ back to styles/
2021-02-16 01:08:50 -06:00

16 lines
339 B
JavaScript

/**
* This file allows you to add functionality to the Theme Customizer
* live preview. jQuery is readily available.
*
* {@link https://codex.wordpress.org/Theme_Customization_API}
*/
/**
* Change the blog name value.
*
* @param {string} value
*/
wp.customize('blogname', value => {
value.bind(to => $('.brand').text(to));
});