Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: milo/appengine/frontend/expectations/swarming.build-build-expired.html

Issue 2886353002: Milo: Add an option to hide green steps (Closed)
Patch Set: Retrain Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 3
4 <html lang="en"> 4 <html lang="en">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title> 6 <title>
7 7
8 Expired 8 Expired
9 9
10 - 10 -
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 </td></tr> 124 </td></tr>
125 </table> 125 </table>
126 126
127 </div> 127 </div>
128 128
129 129
130 </div> 130 </div>
131 </div> 131 </div>
132 <script language="javascript"> 132 <script language="javascript">
133 $(document).ready(function() { 133 $(document).ready(function() {
134 var check = function(checked) { 134
135 var things = $("#steps"); 135 var check = function(className) {
136 if (checked) { 136 $("#steps").removeClass("all standard interesting").addClass(className)
137 $("#steps").removeClass("hide"); 137 }
138 } else { 138
139 $("#steps").addClass("hide"); 139 $("#showInteresting").click(function(e) {
140 check("interesting");
141 });
142 $("#showStandard").click(function(e) {
143 check("standard");
144 });
145 $("#showAll").click(function(e) {
146 check("all");
147 });
148
149 $("input[name='hider']").each(function(){
150 if ($(this).prop("checked")) {
151 $(this).click();
140 } 152 }
141 var numHidden = $(".verbosity-Hidden").length;
142 if (numHidden > 0) {
143 $("#numHidden").text("(" + numHidden + " hidden)");
144 } else {
145 $("#numHidden").text("");
146 }
147 };
148
149 check($("#showHidden").is(":checked"));
150 $("#showHidden").click(function(e) {
151 check($(this).is(":checked"));
152 }); 153 });
153 }); 154 });
154 </script> 155 </script>
155 156
156 <footer> 157 <footer>
157 <hr> 158 <hr>
158 <a href="https://github.com/luci">luci</a>, 159 <a href="https://github.com/luci">luci</a>,
159 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 160 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
160 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b> 161 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
161 </footer> 162 </footer>
(...skipping 20 matching lines...) Expand all
182 <script> 183 <script>
183 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 184 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
184 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o), 185 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
185 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m) 186 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
186 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga'); 187 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
187 188
188 ga('create', 'UA-12345-01', 'auto'); 189 ga('create', 'UA-12345-01', 'auto');
189 ga('send', 'pageview'); 190 ga('send', 'pageview');
190 </script> 191 </script>
191 192
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698