From 24d68b3bcfd3019167ffb82e963a53987ba3da9e Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 26 Nov 2012 03:35:28 +0000 Subject: [PATCH] Media: Watch more events for input changes to catch paste, autocomplete, etc. Fixes issue where pasting a URL in 'From URL' (via the context menu) did not enable the insert button, as the event was not yet fired. props koopersmith. fixes #22545. git-svn-id: http://core.svn.wordpress.org/trunk@22836 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/media-views.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js index 8ace09c3f6..9da020367d 100644 --- a/wp-includes/js/media-views.js +++ b/wp-includes/js/media-views.js @@ -2819,6 +2819,7 @@ }, events: { + 'input': 'search', 'keyup': 'search', 'change': 'search', 'search': 'search' @@ -3534,7 +3535,9 @@ className: 'embed-url', events: { - 'keyup': 'url' + 'input': 'url', + 'keyup': 'url', + 'change': 'url' }, initialize: function() {