mirror of
https://github.com/10h30/full-screen-morphing-search.git
synced 2026-07-19 14:33:32 +09:00
97d20e9a81
Version 2.0
15 lines
454 B
JavaScript
15 lines
454 B
JavaScript
/* global kirkiBranding */
|
|
jQuery( document ).ready( function() {
|
|
|
|
'use strict';
|
|
|
|
if ( '' !== kirkiBranding.logoImage ) {
|
|
jQuery( 'div#customize-info .preview-notice' ).replaceWith( '<img src="' + kirkiBranding.logoImage + '">' );
|
|
}
|
|
|
|
if ( '' !== kirkiBranding.description ) {
|
|
jQuery( 'div#customize-info > .customize-panel-description' ).replaceWith( '<div class="customize-panel-description">' + kirkiBranding.description + '</div>' );
|
|
}
|
|
|
|
} );
|