OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <script src="../bower_components/sugar/release/sugar-full.development.js"></scri
pt> | 7 <script src="../bower_components/sugar/release/sugar-full.development.js"></scri
pt> |
8 <script src="../scripts/net.js"></script> | 8 <script src="../scripts/net.js"></script> |
9 <script src="../scripts/results.js"></script> | 9 <script src="../scripts/results.js"></script> |
10 <script src="../scripts/treestatus.js"></script> | 10 <script src="../scripts/treestatus.js"></script> |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 77 |
78 _updateTree: function() { | 78 _updateTree: function() { |
79 this.tree = this.$.tree.selectedOptions[0].value; | 79 this.tree = this.$.tree.selectedOptions[0].value; |
80 }, | 80 }, |
81 | 81 |
82 onBack: function() { | 82 onBack: function() { |
83 this.selected = 0; | 83 this.selected = 0; |
84 }, | 84 }, |
85 | 85 |
86 onExamine: function(event) { | 86 onExamine: function(event) { |
87 this.currentFailures = event.detail; | 87 this.currentFailures = event.detail.failures; |
88 this.selected = 1; | 88 this.selected = 1; |
89 }, | 89 }, |
90 }); | 90 }); |
91 </script> | 91 </script> |
92 </polymer-element> | 92 </polymer-element> |
OLD | NEW |