Bug fix for dygraph point selection touch event.
[dygraphs.git] / tests / native-format.html
index 907c4f3..3ce1611 100644 (file)
@@ -1,13 +1,10 @@
+<!DOCTYPE html>
 <html>
   <head>
+    <link rel="stylesheet" href="../dist/dygraph.css">
     <title>Native Format</title>
-    <!--[if IE]>
-    <script type="text/javascript" src="excanvas.js"></script>
-    <![endif]-->
-    <script type="text/javascript" src="../strftime/strftime-min.js"></script>
-    <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
-    <script type="text/javascript" src="../dygraph-canvas.js"></script>
-    <script type="text/javascript" src="../dygraph.js"></script>
+    <script type="text/javascript" src="../dist/dygraph.js"></script>
+
   </head>
   <body>
     <p>These two charts should be indistinguishable:</p>
     <script type="text/javascript">
       g2 = new Dygraph(document.getElementById("graphdiv2"),
                        [
-                         [1,10,100],
-                         [2,20,80],
-                         [3,50,60],
-                         [4,70,80]
+                         ['1', '10', '100'],
+                         ['2', '20', '80'],
+                         ['3', '50', '60'],
+                         ['4', '70', '80']
                        ],
                        {
                          labels: [ "x", "A", "B" ]