| OLD | NEW |
| 1 {{define "title"}} | 1 {{define "title"}} |
| 2 {{ with .Build.Summary -}} | 2 {{ with .Build.Summary -}} |
| 3 {{ if eq .Status.String "InfraFailure" }} | 3 {{ if eq .Status.String "InfraFailure" }} |
| 4 Infra Failure | 4 Infra Failure |
| 5 {{ else if eq .Status.String "Exception" }} | 5 {{ else if eq .Status.String "Exception" }} |
| 6 Exception | 6 Exception |
| 7 {{ else if eq .Status.String "Failure" }} | 7 {{ else if eq .Status.String "Failure" }} |
| 8 Failed | 8 Failed |
| 9 {{ else if eq .Status.String "NotRun" }} | 9 {{ else if eq .Status.String "NotRun" }} |
| 10 Pending | 10 Pending |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 }); | 344 }); |
| 345 | 345 |
| 346 $("input[name='hider']").each(function(){ | 346 $("input[name='hider']").each(function(){ |
| 347 if ($(this).prop("checked")) { | 347 if ($(this).prop("checked")) { |
| 348 $(this).click(); | 348 $(this).click(); |
| 349 } | 349 } |
| 350 }); | 350 }); |
| 351 }); | 351 }); |
| 352 </script> | 352 </script> |
| 353 {{end}} | 353 {{end}} |
| OLD | NEW |