Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Unified Diff: Tools/GardeningServer/ui/ct-commit.html

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update and delete old code Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698