diff options
author | Frank Wuerthwein <fkw@ucsd.edu> | 2009-03-14 20:01:55 -0400 |
---|---|---|
committer | Frank Wuerthwein <fkw@ucsd.edu> | 2009-03-14 20:01:55 -0400 |
commit | 1fd4de1b25398954e9ab43e54d0d0fdf1b5cfce0 (patch) | |
tree | 57e8b2919f9ea6a66f339433e5dab41fbdedc86c /examples/selection.html | |
parent | 7385ff9506ea6db4c07150ee1b56e436cf384918 (diff) |
flot-0.6pre@147
Diffstat (limited to 'examples/selection.html')
-rw-r--r-- | examples/selection.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/selection.html b/examples/selection.html index 4a745d7..56cb3db 100644 --- a/examples/selection.html +++ b/examples/selection.html @@ -4,7 +4,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Flot Examples</title> <link href="layout.css" rel="stylesheet" type="text/css"></link> - <!--[if IE]><script language="javascript" type="text/javascript" src="../excanvas.pack.js"></script><![endif]--> + <!--[if IE]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]--> <script language="javascript" type="text/javascript" src="../jquery.js"></script> <script language="javascript" type="text/javascript" src="../jquery.flot.js"></script> </head> @@ -90,6 +90,10 @@ $(function () { xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to } })); }); + + placeholder.bind("plotunselected", function (event) { + $("#selection").text(""); + }); var plot = $.plot(placeholder, data, options); |