[llvm-commits] [LNT] r164290 - /lnt/trunk/lnt/server/ui/templates/v4_graph.html
Michael Gottesman
mgottesman at apple.com
Wed Sep 19 23:25:58 PDT 2012
Author: mgottesman
Date: Thu Sep 20 01:25:58 2012
New Revision: 164290
URL: http://llvm.org/viewvc/llvm-project?rev=164290&view=rev
Log:
[LNT] Added code to v4_graph.html to use the new flot touch plugin.
Modified:
lnt/trunk/lnt/server/ui/templates/v4_graph.html
Modified: lnt/trunk/lnt/server/ui/templates/v4_graph.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_graph.html?rev=164290&r1=164289&r2=164290&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_graph.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_graph.html Thu Sep 20 01:25:58 2012
@@ -27,6 +27,9 @@
<script language="javascript" type="text/javascript"
src="{{ url_for('.static',
filename='flot/jquery.flot.highlight.min.js') }}"></script>
+ <script language="javascript" type="text/javascript"
+ src="{{ url_for('.static',
+ filename='flot/jquery.flot.touch.min.js') }}"></script>
{% endblock %}
{% block title %}Graph{% endblock %}
@@ -70,6 +73,9 @@
lineWidth : 1 },
shadowSize : 0 },
selection: { mode: "x" },
+ touch: {
+ enabled: false
+ },
highlight : {
range: {{revision_range|tojson|safe}},
alpha: "1",
More information about the llvm-commits
mailing list