Chromium Code Reviews| 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 <polymer-element name="ct-commit" attributes="data"> | 7 <polymer-element name="ct-commit" attributes="data"> |
| 8 <template> | 8 <template> |
| 9 <style> | 9 <style> |
| 10 :host { | 10 :host { |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 width: 0; | 25 width: 0; |
| 26 height: 0; | 26 height: 0; |
| 27 margin-top: 5px; | 27 margin-top: 5px; |
| 28 position: absolute; | 28 position: absolute; |
| 29 margin-left: 10px; | 29 margin-left: 10px; |
| 30 border-top: 5px solid white; | 30 border-top: 5px solid white; |
| 31 border-left: 5px solid #555; | 31 border-left: 5px solid #555; |
| 32 border-bottom: 5px solid white; | 32 border-bottom: 5px solid white; |
| 33 } | 33 } |
| 34 </style> | 34 </style> |
| 35 <a href="{{data.revision|changesetURL}}">{{data.revision}}</a> {{data.summar y}} <em>{{data.author}}</em> | 35 <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
| |
| 36 </template> | 36 </template> |
| 37 <script> | 37 <script> |
| 38 Polymer({ | 38 Polymer({ |
| 39 changesetURL: function(revision) { | 39 _url: '', |
| 40 // FIXME: This is the last caller of trac.*. Find a better home for this . | 40 |
| 41 return trac.changesetURL(revision); | 41 dataChanged: function() { |
| 42 this._url = this.data.url(); | |
| 42 }, | 43 }, |
|
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
| |
| 43 }); | 44 }); |
| 44 </script> | 45 </script> |
| 45 </polymer-element> | 46 </polymer-element> |
| OLD | NEW |