diff talosnames/templates/index.html @ 33:15f17eeb1813

full test data
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 23 Jul 2012 13:47:51 -0700
parents 1a9ec766f2b0
children b51b0d750086
line wrap: on
line diff
--- a/talosnames/templates/index.html	Mon Jul 23 13:22:29 2012 -0700
+++ b/talosnames/templates/index.html	Mon Jul 23 13:47:51 2012 -0700
@@ -59,13 +59,15 @@
 <script>
 $(document).ready(function() {
 
+// color paint/chrome boxes appropriately
+
+
+// add TBPL initials to TBPL names from Config.js
 $('td.tbpl').each(function() {
-
 var text = $(this).text();
 if (text.length && Config.testNames[text]) {
 $(this).html(text + '(<span class="tbpl_initial">' + Config.testNames[text] + '</span>)');
 }
-
 });
 
 });