index.html 560 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <title>
  4. If you see this, JavaScript threw an error
  5. </title>
  6. </head>
  7. <body>
  8. <h1>
  9. If you see this, JavaScript threw an error
  10. </h1>
  11. </body>
  12. <script src="./transloadit-js-client.js"></script>
  13. <script>
  14. var branch = location.pathname.split('/')[2];
  15. var elTitle = document.querySelector('title');
  16. var elH1 = document.querySelector('h1');
  17. var title = 'You are reviewing the latest push of branch: ' + branch;
  18. elTitle.innerHTML = title;
  19. elH1.innerHTML = title;
  20. </script>
  21. </html>