app/Plugin/DeliveryDate42/Resource/template/admin/Product/product_days.js line 1

Open in your IDE?
  1. {% if has_class == false %}
  2.     <script>
  3.         $(function() {
  4.             $('div.row').each(function(i) {
  5.                 if($(this).text().match(/{{'admin.product.delivery_duration'|trans}}/)){
  6.                     $elem = $('#deliverydate_days');
  7.                     $(this).after($elem.html());
  8.                     $(this).remove();
  9.                     $elem.remove();
  10.                 }
  11.             });
  12.         });
  13.     </script>
  14. {% endif %}