Chromium Code Reviews| Index: Tools/GardeningServer/ui/ct-sheriff-o-matic.html |
| diff --git a/Tools/GardeningServer/ui/ct-sheriff-o-matic.html b/Tools/GardeningServer/ui/ct-sheriff-o-matic.html |
| index a0b85dfe28d782433e120672b25c38ae7b37ea5e..5090bdc0cead1870e770552dfe145ec265a83fdd 100644 |
| --- a/Tools/GardeningServer/ui/ct-sheriff-o-matic.html |
| +++ b/Tools/GardeningServer/ui/ct-sheriff-o-matic.html |
| @@ -112,12 +112,14 @@ found in the LICENSE file. |
| }, |
| onExamine: function(event) { |
| + var dataToExamine = event.detail.dataToExamine(); |
|
ojan
2014/09/04 02:58:43
I'd rather that this code do different things depe
shans
2014/09/05 00:08:20
I'm not sure how this would work with the history
|
| window.history.pushState({ |
| - currentFailures: event.detail.failures, |
| + currentFailures: dataToExamine, |
| selected: 1, |
| }); |
| - this.currentFailures = event.detail.failures; |
| + |
| + this.currentFailures = dataToExamine; |
| this.selected = 1; |
| }, |