branding.js (440B)
1 jQuery(document).ready(function () { 2 3 'use strict'; 4 5 if ('' !== kirkiBranding.logoImage) { 6 jQuery('div#customize-info .preview-notice').replaceWith('<img src="' + kirkiBranding.logoImage + '">'); 7 } 8 9 if ('' !== kirkiBranding.description) { 10 jQuery('div#customize-info > .customize-panel-description').replaceWith('<div class="customize-panel-description">' + kirkiBranding.description + '</div>'); 11 } 12 13 }); 14