Chromium Code Reviews| Index: Tools/GardeningServer/ui/ct-commit.html |
| diff --git a/Tools/GardeningServer/ui/ct-commit.html b/Tools/GardeningServer/ui/ct-commit.html |
| index 5a4dc014f376b0ad8fb2c21ba7c936f339d0bbb8..8adc8e2924827e6976d21c9631bfaa42d00101e4 100644 |
| --- a/Tools/GardeningServer/ui/ct-commit.html |
| +++ b/Tools/GardeningServer/ui/ct-commit.html |
| @@ -32,13 +32,14 @@ found in the LICENSE file. |
| border-bottom: 5px solid white; |
| } |
| </style> |
| - <a href="{{data.revision|changesetURL}}">{{data.revision}}</a> {{data.summary}} <em>{{data.author}}</em> |
| + <a href="{{ _url }}">{{ data.revision }}</a> {{ data.summary }} <em>{{ data.author }}</em> |
|
ojan
2014/07/21 00:44:56
This goes along with the model/ct-commit.html chan
|
| </template> |
| <script> |
| Polymer({ |
| - changesetURL: function(revision) { |
| - // FIXME: This is the last caller of trac.*. Find a better home for this. |
| - return trac.changesetURL(revision); |
| + _url: '', |
| + |
| + dataChanged: function() { |
| + this._url = this.data.url(); |
| }, |
|
abarth-chromium
2014/07/21 06:44:17
Lame
ojan
2014/07/21 22:46:13
Now that url is a getter, this goes away. Make thi
|
| }); |
| </script> |