Projet

Général

Profil

0001-misc-let-geolocation-fill-textarea-10706.patch

Frédéric Péters, 19 avril 2016 11:25

Télécharger (955 octets)

Voir les différences:

Subject: [PATCH] misc: let geolocation fill textarea (#10706)

 wcs/qommon/static/js/qommon.geolocation.js | 1 +
 1 file changed, 1 insertion(+)
wcs/qommon/static/js/qommon.geolocation.js
138 138
function geoloc_prefill(element_type, element_value)
139 139
{
140 140
  $('div[data-geolocation="' + element_type +'"] input').val(element_value);
141
  $('div[data-geolocation="' + element_type +'"] textarea').val(element_value);
141 142
  var $options = $('div[data-geolocation="' + element_type +'"] option');
142 143
  if ($options.length == 0) return;
143 144

  
144
-