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

Side by Side Diff: dashboard/dashboard/elements/chart-tooltip.html

Issue 2181243003: [dashboard] Use "dialog-dismiss" and "dialog-confirm" w/ paper-dialogs (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Checkpoint. Created 4 years, 4 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 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <!-- 7 <!--
8 The chart-tooltip element is the box that is shown when you hover over or click 8 The chart-tooltip element is the box that is shown when you hover over or click
9 on a point on a graph. It shows more detailed information about the point that 9 on a point on a graph. It shows more detailed information about the point that
10 was just clicked. 10 was just clicked.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 </div> 104 </div>
105 105
106 <div> 106 <div>
107 <template is="dom-repeat" items={{links}}> 107 <template is="dom-repeat" items={{links}}>
108 <span class="annotation-link"><a href="{{item.url}}" target="_blan k">{{item.text}}</a></span><br /> 108 <span class="annotation-link"><a href="{{item.url}}" target="_blan k">{{item.text}}</a></span><br />
109 </template> 109 </template>
110 </div> 110 </div>
111 </div> 111 </div>
112 112
113 <div class="card-actions"> 113 <div class="card-actions">
114 <bisect-button affirmative xsrf-token="{{xsrfToken}}" 114 <bisect-button dialog-confirm xsrf-token="{{xsrfToken}}"
115 bug-id="{{bugId}}" 115 bug-id="{{bugId}}"
116 bisect-info="{{bisectInfo}}"></bisect-button> 116 bisect-info="{{bisectInfo}}"></bisect-button>
117 <trace-button affirmative xsrf-token="{{xsrfToken}}" 117 <trace-button dialog-confirm xsrf-token="{{xsrfToken}}"
118 bug-id="{{bugId}}" 118 bug-id="{{bugId}}"
119 trace-info="{{bisectInfo}}"></trace-button> 119 trace-info="{{bisectInfo}}"></trace-button>
120 </div> 120 </div>
121 121
122 </paper-card> 122 </paper-card>
123 </dialog-container> 123 </dialog-container>
124 </template> 124 </template>
125 <script> 125 <script>
126 'use strict'; 126 'use strict';
127 Polymer({ 127 Polymer({
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 bugNotInvalid: function(bugId) { 229 bugNotInvalid: function(bugId) {
230 return bugId != -1; 230 return bugId != -1;
231 }, 231 },
232 bugNotIgnored: function(bugId) { 232 bugNotIgnored: function(bugId) {
233 return bugId != -2; 233 return bugId != -2;
234 } 234 }
235 }); 235 });
236 </script> 236 </script>
237 </dom-module> 237 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698