Projet

Général

Profil

0001-general-handle-.clickable-rows-at-document-level-603.patch

Benjamin Dauvergne, 07 janvier 2022 10:22

Télécharger (846 octets)

Voir les différences:

Subject: [PATCH] general: handle .clickable-rows at document level (#60396)

 gadjo/static/js/gadjo.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
gadjo/static/js/gadjo.js
402 402
        });
403 403
    });
404 404
    $(function() {
405
      $('.clickable-rows tr').on('click auxclick', function(event) {
405
      $(document).on('click auxclick', '.clickable-rows tr', function(event) {
406 406
        var $target = $(event.target);
407 407
        if ($target.is('input, button, a')) {
408 408
          return true;
409
-