Projet

Général

Profil

0001-misc-include-origin-field-in-live-change-message-271.patch

Frédéric Péters, 10 octobre 2018 08:17

Télécharger (902 octets)

Voir les différences:

Subject: [PATCH] misc: include origin field in "live change" message (#27172)

 wcs/qommon/static/js/qommon.forms.js | 3 +++
 1 file changed, 3 insertions(+)
wcs/qommon/static/js/qommon.forms.js
74 74
    if (live_evaluation) {
75 75
      live_evaluation.abort();
76 76
    }
77
    if ($(this).attr('id')) {
78
      new_data += '&changed_field_id=' + $(this).parents('[data-field-id]').data('field-id');
79
    }
77 80
    live_evaluation = $.ajax({
78 81
      type: 'POST',
79 82
      url: window.location.pathname + 'live',
80
-