mirror of
https://ghproxy.net/https://github.com/AlxMedia/splits.git
synced 2025-08-26 06:20:51 +08:00
14 lines
454 B
JavaScript
14 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>' );
|
|
}
|
|
|
|
} );
|