[docs][s]: correct flotr2 refs to flot.

This commit is contained in:
Rufus Pollock
2013-05-05 19:07:30 +01:00
parent 49daa84ad9
commit aaa865d78b

View File

@@ -120,13 +120,16 @@ grid.render();
Let's create a graph view to display a line graph for this dataset. Let's create a graph view to display a line graph for this dataset.
First, add the additional dependencies for this view. These are the Flot First, add the additional dependencies for this view. These are the Flot
library and the Recline Graph view: library and the Recline Flot Graph view:
{% highlight html %} {% highlight html %}
<link rel="stylesheet" href="css/graph.css"> <link rel="stylesheet" href="css/flot.css">
<!-- javascript --> <!-- javascript -->
<script type="text/javascript" src="vendor/flotr2/flotr2.js"></script> <!--[if lte IE 8]>
<script language="javascript" type="text/javascript" src="vendor/flot/excanvas.min.js"></script>
<![endif]-->
<script type="text/javascript" src="vendor/flot/jquery.flot.js"></script>
<script type="text/javascript" src="src/view.graph.js"></script> <script type="text/javascript" src="src/view.graph.js"></script>
{% endhighlight %} {% endhighlight %}