Make WordPress Core

Changeset 51945


Ignore:
Timestamp:
10/28/2021 04:06:20 PM (3 years ago)
Author:
joedolson
Message:

Media: Close attachment details modal with esc key.

The event that fired closing the attachment details modal also removed the keydown event listener, so subsequent modals could not be closed with the escape key.

Props vondelphia, sourovroy, sabernhardt
Fixes #53924.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/media/views/modal.js

    r50547 r51945  
    139139        $( 'body' ).removeClass( 'modal-open' );
    140140
    141         // Hide modal and remove restricted media modal tab focus once it's closed.
    142         this.$el.hide().off( 'keydown' );
     141        // Hide the modal element by adding display none.
     142        this.$el.hide();
    143143
    144144        /*
Note: See TracChangeset for help on using the changeset viewer.