Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="/bower_components/polymer/polymer.html"> | 1 <link rel="import" href="/bower_components/polymer/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="/bower_components/iron-icon/iron-icon.html"> | 3 <link rel="import" href="/bower_components/iron-icon/iron-icon.html"> |
| 4 <link rel="import" href="/bower_components/iron-icons/iron-icons.html"> | 4 <link rel="import" href="/bower_components/iron-icons/iron-icons.html"> |
| 5 <link rel="import" href="/bower_components/paper-button/paper-button.html"> | 5 <link rel="import" href="/bower_components/paper-button/paper-button.html"> |
| 6 <link rel="import" href="/bower_components/paper-icon-button/paper-icon-button.h tml"> | 6 <link rel="import" href="/bower_components/paper-icon-button/paper-icon-button.h tml"> |
| 7 <link rel="import" href="/elements/som-extension-build-failure.html"> | 7 <link rel="import" href="/elements/som-extension-build-failure.html"> |
| 8 | 8 |
| 9 <dom-module id="som-alert-item"> | 9 <dom-module id="som-alert-item"> |
| 10 <template> | 10 <template> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 <a target="_blank" href$="[[bug]]">[[_bugLabel(bug)]]</a> | 68 <a target="_blank" href$="[[bug]]">[[_bugLabel(bug)]]</a> |
| 69 <paper-button id="remove[[index]]" on-tap="_removeBug" raised> Remove</paper-button> | 69 <paper-button id="remove[[index]]" on-tap="_removeBug" raised> Remove</paper-button> |
| 70 </template> | 70 </template> |
| 71 </div> | 71 </div> |
| 72 </div> | 72 </div> |
| 73 <div class="alert-times"> | 73 <div class="alert-times"> |
| 74 [[_duration]] | 74 [[_duration]] |
| 75 </div> | 75 </div> |
| 76 </div> | 76 </div> |
| 77 <hr/> | 77 <hr/> |
| 78 <div class="alert-body">[[alert.body]]</div> | 78 [[alert.body]] |
|
seanmccullough1
2016/06/21 21:39:44
I think the intent was to remove alert.body *compl
| |
| 79 <div class="alert-expanded layout horizontal center"> | 79 <div class="alert-expanded layout horizontal center"> |
| 80 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a> | 80 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a> |
| 81 <paper-button class="horizontal layout center" on-tap="_fileBug" alt ="Link a bug" raised noink> | 81 <paper-button class="horizontal layout center" on-tap="_fileBug" alt ="Link a bug" raised noink> |
| 82 <iron-icon class="file-bug-icon" icon="bug-report"></iron-icon> | 82 <iron-icon class="file-bug-icon" icon="bug-report"></iron-icon> |
| 83 Link Bug | 83 Link Bug |
| 84 </paper-button> | 84 </paper-button> |
| 85 <paper-button class="horizontal layout center" id="snooze" icon="[[_ snoozeIcon]]" title$="[[_snoozeText]]" on-tap="_snooze" raised noink> | 85 <paper-button class="horizontal layout center" id="snooze" icon="[[_ snoozeIcon]]" title$="[[_snoozeText]]" on-tap="_snooze" raised noink> |
| 86 <iron-icon class="snooze-icon" icon="[[_snoozeIcon]]"> | 86 <iron-icon class="snooze-icon" icon="[[_snoozeIcon]]"> |
| 87 </iron-icon> | 87 </iron-icon> |
| 88 [[_snoozeText]] | 88 [[_snoozeText]] |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 232 change: {'snoozeTime': true}, | 232 change: {'snoozeTime': true}, |
| 233 }); | 233 }); |
| 234 } else { | 234 } else { |
| 235 this.fire('snooze'); | 235 this.fire('snooze'); |
| 236 } | 236 } |
| 237 }, | 237 }, |
| 238 }); | 238 }); |
| 239 })(); | 239 })(); |
| 240 </script> | 240 </script> |
| 241 </dom-module> | 241 </dom-module> |
| OLD | NEW |