From 663dd97aa87d2428ae4c25231f555f7f463e0f82 Mon Sep 17 00:00:00 2001 From: Daryl Koopersmith Date: Wed, 21 Nov 2012 13:17:10 +0000 Subject: [PATCH] Customizer: Track the link that was used to open the customizer and restore focus on close. props lessbloat. fixes #21283. git-svn-id: https://develop.svn.wordpress.org/trunk@22756 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/js/customize-controls.js | 3 +-- wp-includes/js/customize-loader.js | 8 +++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/wp-admin/js/customize-controls.js b/wp-admin/js/customize-controls.js index d44aac55ad..96f776744f 100644 --- a/wp-admin/js/customize-controls.js +++ b/wp-admin/js/customize-controls.js @@ -881,9 +881,8 @@ $('.back').keydown( function( event ) { if ( 9 === event.which ) // tab return; - var thisHref = $(this).attr('href'); if ( 13 === event.which ) // enter - window.location = thisHref; + parent.send( 'close' ); event.preventDefault(); }); diff --git a/wp-includes/js/customize-loader.js b/wp-includes/js/customize-loader.js index bd34484465..2ecbbe0fbf 100644 --- a/wp-includes/js/customize-loader.js +++ b/wp-includes/js/customize-loader.js @@ -28,8 +28,10 @@ window.wp = window.wp || {}; $('#wpbody').on( 'click', '.load-customize', function( event ) { event.preventDefault(); + // Store a reference to the link that opened the customizer. + Loader.link = $(this); // Load the theme. - Loader.open( $(this).attr('href') ); + Loader.open( Loader.link.attr('href') ); }); // Add navigation listeners. @@ -123,6 +125,10 @@ window.wp = window.wp || {}; this.active = false; this.trigger( 'close' ); + + // Return focus to link that was originally clicked. + if ( this.link ) + this.link.focus(); }, closed: function() {