Fix a type: document -> document.body

Does that fix #176?
This commit is contained in:
Maxime Quandalle 2015-08-25 20:23:11 +02:00
parent 6730478008
commit 22e854cc30

View file

@ -150,7 +150,7 @@ Mousetrap.bindGlobal('esc', function() {
// On a left click on the document, we try to exectute one escape action (eg, // On a left click on the document, we try to exectute one escape action (eg,
// close the popup). We don't execute any action if the user has clicked on a // close the popup). We don't execute any action if the user has clicked on a
// link or a button. // link or a button.
$(document).on('click', function(evt) { $(document.body).on('click', function(evt) {
if (evt.which === 1 && if (evt.which === 1 &&
$(evt.target).closest('a,button,.is-editable').length === 0) { $(evt.target).closest('a,button,.is-editable').length === 0) {
EscapeActions.clickExecute(evt.target, 'multiselection'); EscapeActions.clickExecute(evt.target, 'multiselection');