File: index.html

package info (click to toggle)
node-jszip-utils 0.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 192 kB
  • sloc: javascript: 253; sh: 5; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 1,259 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <title>JSZip Testing</title>

      <link media="screen" href="http://code.jquery.com/qunit/qunit-1.14.0.css" type="text/css" rel="stylesheet">
      <script type="text/javascript" src="http://code.jquery.com/qunit/qunit-1.14.0.js"></script>
      <script>
          // no CDN, fallback on the npm version
          if(!window.QUnit) {
              document.write('<link media="screen" href="../node_modules/qunitjs/qunit/qunit.css" type="text/css" rel="stylesheet">');
              document.write('<script type="text/javascript" src="../node_modules/qunitjs/qunit/qunit.js"><\/script>');
          }
      </script>

      <script type="text/javascript" src="../dist/jszip-utils.js"></script>

      <!--
      Mandatory in IE 6, 7, 8 and 9.
      -->
      <!--[if IE]>
      <script type="text/javascript" src="../dist/jszip-utils-ie.js"></script>
      <![endif]-->

      <script type="text/javascript" src="test.js"></script>

   </head>
   <body>
      <div id="qunit"></div>
      <div id="qunit-fixture"></div>
   </body>
</html>
<!-- enforcing Stuk's coding style -->
<!-- vim: set shiftwidth=4 softtabstop=4 foldmethod=marker: -->