Responsive Modal don't close on ESC
Responsive Modal don't close on ESC

In responsive plugin, when using modal to show all info, the ESC don't work to close the modal. Have to use external script. This is the line (1262):
$(document).on( 'keyup.dtr', function (e) {
if ( e.keyCode === 27 ) {
e.stopPropagation();
close();
}
} );
Replies
Soluction:
Thanks for posting back. That looks like a fix for a Bootstrap modal. Looks good.
Allan