templates/main/setbrowserwidth.html.twig line 1

Open in your IDE?
  1. <html>
  2. <head>
  3.     <script>
  4.         function getSize(){
  5.             document.getElementById('inp_width').value = window.innerWidth;
  6.             document.getElementById('form_size').submit();
  7.         }
  8.     </script>
  9. </head>
  10. <body onload='getSize()'>
  11.     <form method='post' id='form_size'>
  12.         <input type='hidden' name='width' id='inp_width'/>
  13.     </form>
  14. </body>
  15. </html>