templates/website/includes/sc-activate.html.twig line 1

Open in your IDE?
  1. {% if user and session  %}
  2.     <script id="activate-sc" type="text/javascript" nonce="{{ nonceHash }}">
  3.         ((win, i, t) => {
  4.             win[`get${i}`] = () => {
  5.                 return t;
  6.             };
  7.             win.scHash = i;
  8.         })(window, '{{ scHash }}', '{{ session.token }}');
  9.         document.getElementById('activate-sc').remove();
  10.     </script>
  11. {% endif %}