[llvm-commits] [LNT] r164288 - /lnt/trunk/lnt/server/ui/templates/v4_graph.html

Michael Gottesman mgottesman at apple.com
Wed Sep 19 23:25:52 PDT 2012


Author: mgottesman
Date: Thu Sep 20 01:25:52 2012
New Revision: 164288

URL: http://llvm.org/viewvc/llvm-project?rev=164288&view=rev
Log:
[LNT] v4_graph: Updated v4_graph so that flot will update at a maximum
of 60 fps instead of being limited to the default value of 20 fps.

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=164288&r1=164287&r2=164288&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:52 2012
@@ -50,7 +50,8 @@
         range: {{revision_range|tojson|safe}} 
       },
       zoom : { interactive : true },
-      pan : { interactive : true },
+      pan : { interactive : true,
+              frameRate: 60 },
       grid : {
         hoverable : true }
       };





More information about the llvm-commits mailing list