Pressing escape now closes the media modal. props koopersmith, see #22502.

git-svn-id: http://core.svn.wordpress.org/trunk@22946 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-11-30 08:37:17 +00:00
parent e656d19a30
commit 5d9fcc48b6
1 changed files with 16 additions and 2 deletions

View File

@ -1616,8 +1616,13 @@
tagName: 'div',
template: media.template('media-modal'),
attributes: {
tabindex: 0
},
events: {
'click .media-modal-backdrop, .media-modal-close' : 'closeHandler'
'click .media-modal-backdrop, .media-modal-close': 'closeHandler',
'keydown': 'keydown'
},
initialize: function() {
@ -1658,7 +1663,7 @@
},
open: function() {
this.$el.show();
this.$el.show().focus();
return this.propagate('open');
},
@ -1691,6 +1696,15 @@
this.controller.trigger( id );
return this;
},
keydown: function( event ) {
// Close the modal when escape is pressed.
if ( 27 === event.which ) {
event.preventDefault();
this.close();
return;
}
}
});