OLD | NEW |
1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. |
2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
4 | 4 |
5 <link rel="import" href="cr-butterbar.html"> | 5 <link rel="import" href="../common/cr-butterbar.html"> |
6 <link rel="import" href="cr-button.html"> | 6 <link rel="import" href="../common/cr-button.html"> |
7 <link rel="import" href="cr-dialog.html"> | 7 <link rel="import" href="../common/cr-dialog.html"> |
| 8 <link rel="import" href="../common/cr-toolbar.html"> |
| 9 <link rel="import" href="../selfie/cr-gif-selfie.html"> |
8 <link rel="import" href="cr-issue-editor.html"> | 10 <link rel="import" href="cr-issue-editor.html"> |
9 <link rel="import" href="cr-toolbar.html"> | |
10 <link rel="import" href="../selfie/cr-gif-selfie.html"> | |
11 | 11 |
12 <polymer-element name="cr-issue-publish-dialog" attributes="issue addAsReviewer"
> | 12 <polymer-element name="cr-issue-publish-dialog" attributes="issue addAsReviewer"
> |
13 <template> | 13 <template> |
14 <link rel="stylesheet" href="common.css"> | 14 <link rel="stylesheet" href="../common/common.css"> |
15 <style> | 15 <style> |
16 .issue-publish-label { | 16 .issue-publish-label { |
17 font-weight: bold; | 17 font-weight: bold; |
18 color: #959595; | 18 color: #959595; |
19 -webkit-user-select: none; | 19 -webkit-user-select: none; |
20 cursor: default; | 20 cursor: default; |
21 } | 21 } |
22 | 22 |
23 .issue-publish-field, | 23 .issue-publish-field, |
24 .issue-publish-label { | 24 .issue-publish-label { |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 editorHeight: function(draftCount) { | 230 editorHeight: function(draftCount) { |
231 return draftCount ? 15 : 20; | 231 return draftCount ? 15 : 20; |
232 }, | 232 }, |
233 handleGifSave: function(event) { | 233 handleGifSave: function(event) { |
234 var text = "\n\nThis is how I feel about this patch: " + event.d
etail.url; | 234 var text = "\n\nThis is how I feel about this patch: " + event.d
etail.url; |
235 this.message = (this.message + text).trim(); | 235 this.message = (this.message + text).trim(); |
236 }, | 236 }, |
237 }); | 237 }); |
238 </script> | 238 </script> |
239 </polymer-element> | 239 </polymer-element> |
OLD | NEW |