diff --git a/wp-admin/js/dashboard.js b/wp-admin/js/dashboard.js index f807cc931b..50a17f85eb 100644 --- a/wp-admin/js/dashboard.js +++ b/wp-admin/js/dashboard.js @@ -108,7 +108,9 @@ jQuery(document).ready( function($) { }); }); - $('#dashboard_quick_press #title, #dashboard_quick_press #content').focus(function(){ wpActiveEditor = 'content'; }); + $('#quick-press').on( 'click focusin', function() { + wpActiveEditor = 'content'; + }); }; quickPressLoad();