index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <!--
  3. /*
  4. * jQuery File Upload Test
  5. * https://github.com/blueimp/jQuery-File-Upload
  6. *
  7. * Copyright 2010, Sebastian Tschan
  8. * https://blueimp.net
  9. *
  10. * Licensed under the MIT license:
  11. * https://opensource.org/licenses/MIT
  12. */
  13. -->
  14. <html lang="en">
  15. <head>
  16. <meta charset="utf-8" />
  17. <title>jQuery File Upload Test</title>
  18. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  19. <link rel="stylesheet" href="vendor/mocha.css" />
  20. </head>
  21. <body>
  22. <div id="mocha"></div>
  23. <script src="vendor/mocha.js"></script>
  24. <script src="vendor/chai.js"></script>
  25. <script>
  26. mocha.setup('bdd');
  27. </script>
  28. <script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
  29. <script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
  30. <script
  31. src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"
  32. integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
  33. crossorigin="anonymous"
  34. ></script>
  35. <script src="../js/vendor/jquery.ui.widget.js"></script>
  36. <script src="../js/jquery.iframe-transport.js"></script>
  37. <script src="../js/jquery.fileupload.js"></script>
  38. <script src="../js/jquery.fileupload-process.js"></script>
  39. <script src="../js/jquery.fileupload-image.js"></script>
  40. <script src="../js/jquery.fileupload-audio.js"></script>
  41. <script src="../js/jquery.fileupload-video.js"></script>
  42. <script src="../js/jquery.fileupload-validate.js"></script>
  43. <script src="unit.js"></script>
  44. <script>
  45. mocha.checkLeaks();
  46. mocha.run();
  47. </script>
  48. </body>
  49. </html>