Index: Tools/GardeningServer/ui/ct-results-panel.html |
diff --git a/Tools/GardeningServer/ui/ct-results-panel.html b/Tools/GardeningServer/ui/ct-results-panel.html |
index c753a8cbc02705047d5525b6701584fb69f5697f..fec45b4d986dece05ba05c672aa975dc8da809e0 100644 |
--- a/Tools/GardeningServer/ui/ct-results-panel.html |
+++ b/Tools/GardeningServer/ui/ct-results-panel.html |
@@ -29,6 +29,10 @@ found in the LICENSE file. |
text-align: center; |
} |
+ iframe { |
+ height: 100%; |
+ } |
+ |
core-menu { |
box-shadow: 0 3px 3px #ccc; |
flex: none; |
@@ -47,9 +51,12 @@ found in the LICENSE file. |
padding-top: 6px; |
} |
</style> |
- <template if="{{ !failures.length }}"> |
+ <template if="{{ !(failures.length || failures.url) }}"> |
ojan
2014/09/04 02:58:43
Nit: I prefer inverting these sorts of bools inste
shans
2014/09/05 00:08:20
Done.
|
<div class="message">No results to display.</div> |
</template> |
+ <template if="{{ failures.url }}"> |
+ <iframe src='{{ failures.url }}'></iframe> |
ojan
2014/09/04 02:58:43
Indentation is off.
shans
2014/09/05 00:08:20
Done.
|
+ </template> |
<template if="{{ failures.length }}"> |
<core-menu selected="{{ selected }}"> |
<template repeat="{{ failure in failures }}"> |