app/Plugin/ProductContact42/Resource/template/Product/contact_button.twig line 1

Open in your IDE?
  1. <script>
  2.     $(function () {
  3.         $('#form1 .ec-productRole__btn').filter(":last").after('<div class="ec-productRole__btn">\n' +
  4.             '          <button type="button" class="ec-blockBtn--cancel contact">{{ contact_button_label }}</button>\n' +
  5.             '         </div>')
  6.         
  7.         $('body').on('click','.ec-productRole__btn .contact', function () {
  8.             location.href = "{{ url('contact') }}?product={{ Product.id }}"
  9.         })
  10.     })
  11. </script>