From 4d31fcda11af354773d73a08e2c73f285cf165e5 Mon Sep 17 00:00:00 2001 From: Steven Gliebe Date: Thu, 27 Oct 2016 13:32:57 -0500 Subject: [PATCH] Make Customizer preview refresh when insert CT Section widget video --- js/admin-widgets.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/js/admin-widgets.js b/js/admin-widgets.js index 3d8cf90..2986d0c 100644 --- a/js/admin-widgets.js +++ b/js/admin-widgets.js @@ -120,7 +120,7 @@ jQuery( document ).ready( function( $ ) { } ); /************************************** - * MEDIA UPLOADER + * VIDEO FIELD **************************************/ // Open media uploader on button click @@ -160,8 +160,12 @@ jQuery( document ).ready( function( $ ) { if ( typeof attachment != 'undefined' ) { // Set attachment URL on input + // Also trigger change event to make Customizer refresh preview if ( attachment.url ) { - $input_element.val( attachment.url ); // input is directly before button + + $input_element + .val( attachment.url ) // input is directly before button + .change(); } }