Merge branch 'master' of https://github.com/kberg/dygraphs
[dygraphs.git] / tests / interaction.html
index 3d01ecd..e9361fd 100644 (file)
@@ -1,6 +1,7 @@
-
+<!DOCTYPE html>
 <html>
   <head>
+    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
     <title>interaction model</title>
     <!--[if IE]>
     <script type="text/javascript" src="../excanvas.js"></script>
@@ -46,6 +47,8 @@
     </table>
         
     <script type="text/javascript">
+      Dygraph.addEvent(document, "mousewheel", function() { lastClickedGraph = null; });
+      Dygraph.addEvent(document, "click", function() { lastClickedGraph = null; });
       var g = new Dygraph(document.getElementById("div_g"),
            NoisyData, { errorBars : true });
       var g2 = new Dygraph(document.getElementById("div_g2"),
@@ -55,6 +58,7 @@
         'mousedown' : downV3,
         'mousemove' : moveV3,
         'mouseup' : upV3,
+        'click' : clickV3,
         'dblclick' : dblClickV3,
         'mousewheel' : scrollV3
       }});