index.html 809 B

123456789101112131415161718192021222324252627282930
  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. <footer>
  12. <hr />
  13. <ul>
  14. <li><a href="https://travis-ci.org/transloadit/transloadit-js-client">Travis</a></li>
  15. <li><a href="https://github.com/transloadit/transloadit-js-client">GitHub</a></li>
  16. </ul>
  17. </footer>
  18. </body>
  19. <script src="./transloadit-js-client.js"></script>
  20. <script>
  21. var branch = location.pathname.split('/')[2];
  22. var elTitle = document.querySelector('title');
  23. var elH1 = document.querySelector('h1');
  24. var title = 'You are reviewing the latest push of branch: ' + branch;
  25. elTitle.innerHTML = title;
  26. elH1.innerHTML = title;
  27. </script>
  28. </html>