comparison 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
comparison
equal deleted inserted replaced
32:1a9ec766f2b0 33:15f17eeb1813
57 57
58 58
59 <script> 59 <script>
60 $(document).ready(function() { 60 $(document).ready(function() {
61 61
62 // color paint/chrome boxes appropriately
63
64
65 // add TBPL initials to TBPL names from Config.js
62 $('td.tbpl').each(function() { 66 $('td.tbpl').each(function() {
63
64 var text = $(this).text(); 67 var text = $(this).text();
65 if (text.length && Config.testNames[text]) { 68 if (text.length && Config.testNames[text]) {
66 $(this).html(text + '(<span class="tbpl_initial">' + Config.testNames[text] + '</span>)'); 69 $(this).html(text + '(<span class="tbpl_initial">' + Config.testNames[text] + '</span>)');
67 } 70 }
68
69 }); 71 });
70 72
71 }); 73 });
72 </script> 74 </script>
73 </head> 75 </head>