index.html 875 B

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <head>
  3. <title>
  4. Loading..
  5. </title>
  6. <link rel="shortcut icon" href="./favicon.ico">
  7. <link rel="stylesheet" href="./transloadit-js-client.css" type="text/css" />
  8. </head>
  9. <body>
  10. <h1>
  11. Loading..
  12. </h1>
  13. <footer>
  14. <hr />
  15. <ul>
  16. <li><a href="https://travis-ci.org/transloadit/transloadit-js-client">Travis</a></li>
  17. <li><a href="https://github.com/transloadit/transloadit-js-client">GitHub</a></li>
  18. </ul>
  19. </footer>
  20. </body>
  21. <script src="./transloadit-js-client.js"></script>
  22. <script>
  23. var branch = location.pathname.split('/')[2];
  24. var elTitle = document.querySelector('title');
  25. var elH1 = document.querySelector('h1');
  26. var title = 'You are reviewing the latest push of branch: ' + branch;
  27. elTitle.innerHTML = title;
  28. elH1.innerHTML = title;
  29. </script>
  30. </html>