diff --git a/src/js/_enqueues/wp/widgets/custom-html.js b/src/js/_enqueues/wp/widgets/custom-html.js
index 6cc4835..93aa901 100644
a
|
b
|
wp.customHtmlWidgets = ( function( $ ) { |
115 | 115 | control.contentUpdateBypassed = control.fields.content.is( document.activeElement ) || control.editor && control.editor.codemirror.state.focused || 0 !== control.currentErrorAnnotations.length; |
116 | 116 | if ( ! control.contentUpdateBypassed ) { |
117 | 117 | syncInput = control.syncContainer.find( '.sync-input.content' ); |
118 | | control.fields.content.val( syncInput.val() ).trigger( 'change' ); |
| 118 | control.fields.content.val( syncInput.val() ); |
119 | 119 | } |
120 | 120 | }, |
121 | 121 | |