From faca39f74c64dbb416e39741e0b85460d83447f5 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: https://develop.svn.wordpress.org/trunk@22836 602fd350-edb4-49c9-b593-d223f7449a82 --- 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() {