Issues (377)

modules/customizer-branding/branding.js (1 issue)

Checks file comment wrong style

Coding Style Informational
1
/* global kirkiBranding */
0 ignored issues
show
You must use "/**" style comments for a file comment
Loading history...
2
jQuery( document ).ready( function() {
3
4
	'use strict';
5
6
	if ( '' !== kirkiBranding.logoImage ) {
7
		jQuery( 'div#customize-info .preview-notice' ).replaceWith( '<img src="' + kirkiBranding.logoImage + '">' );
8
	}
9
10
	if ( '' !== kirkiBranding.description ) {
11
		jQuery( 'div#customize-info > .customize-panel-description' ).replaceWith( '<div class="customize-panel-description">' + kirkiBranding.description + '</div>' );
12
	}
13
14
} );
15