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

Side by Side Diff: status/templates/commits.html

Issue 1171823005: Add autoroll package, alerts for failed rolls, recent rolls on Status (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: tweaks Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 {{template "header.html" .}} 4 {{template "header.html" .}}
5 <title>Skia Status</title> 5 <title>Skia Status</title>
6 6
7 <style> 7 <style>
8 html /deep/ core-header-panel { 8 html /deep/ core-header-panel {
9 font-family: sans-serif; 9 font-family: sans-serif;
10 } 10 }
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 $$$("tree-status-sk").addEventListener("change", function(e) { 93 $$$("tree-status-sk").addEventListener("change", function(e) {
94 $$$('#sheriff-email').innerHTML = e.detail.sheriff; 94 $$$('#sheriff-email').innerHTML = e.detail.sheriff;
95 var tb = $$("html /deep/ core-toolbar"); 95 var tb = $$("html /deep/ core-toolbar");
96 for (var i = 0; i < tb.length; i++) { 96 for (var i = 0; i < tb.length; i++) {
97 if (e.detail.open == tb[i].classList.contains("closed")) { 97 if (e.detail.open == tb[i].classList.contains("closed")) {
98 tb[i].classList.toggle("closed"); 98 tb[i].classList.toggle("closed");
99 } 99 }
100 } 100 }
101 }) 101 })
102 $$$("autoroll-widget-sk").addEventListener("change", function(e) { 102 $$$("autoroll-widget-sk").addEventListener("change", function(e) {
103 $$$("commits-sk").setAutoRollStatus(e.detail.status.curr_roll_rev, e.d etail.status.last_roll_rev); 103 if (e.detail.status) {
104 $$$("commits-sk").setAutoRollStatus(e.detail.status.curr_roll_rev, e .detail.status.last_roll_rev);
105 }
104 }) 106 })
105 }) 107 })
106 })(); 108 })();
107 </script> 109 </script>
108 </body> 110 </body>
109 </html> 111 </html>
OLDNEW
« status/go/status/main.go ('K') | « status/res/imp/autoroll-widget-sk.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698