Fix a type: document -> document.body

Does that fix #176?
pull/198/merge
Maxime Quandalle 11 years ago
parent 6730478008
commit 22e854cc30
  1. 2
      client/lib/escapeActions.js

@ -150,7 +150,7 @@ Mousetrap.bindGlobal('esc', function() {
// 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
// link or a button.
$(document).on('click', function(evt) {
$(document.body).on('click', function(evt) {
if (evt.which === 1 &&
$(evt.target).closest('a,button,.is-editable').length === 0) {
EscapeActions.clickExecute(evt.target, 'multiselection');

Loading…
Cancel
Save