| 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> | |
| 79 <div class="alert-expanded layout horizontal center"> | 78 <div class="alert-expanded layout horizontal center"> |
| 80 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a> | 79 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a> |
| 81 <paper-button class="horizontal layout center" on-tap="_fileBug" alt
="Link a bug" raised noink> | 80 <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> | 81 <iron-icon class="file-bug-icon" icon="bug-report"></iron-icon> |
| 83 Link Bug | 82 Link Bug |
| 84 </paper-button> | 83 </paper-button> |
| 85 <paper-button class="horizontal layout center" id="snooze" icon="[[_
snoozeIcon]]" title$="[[_snoozeText]]" on-tap="_snooze" raised noink> | 84 <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]]"> | 85 <iron-icon class="snooze-icon" icon="[[_snoozeIcon]]"> |
| 87 </iron-icon> | 86 </iron-icon> |
| 88 [[_snoozeText]] | 87 [[_snoozeText]] |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 change: {'snoozeTime': true}, | 231 change: {'snoozeTime': true}, |
| 233 }); | 232 }); |
| 234 } else { | 233 } else { |
| 235 this.fire('snooze'); | 234 this.fire('snooze'); |
| 236 } | 235 } |
| 237 }, | 236 }, |
| 238 }); | 237 }); |
| 239 })(); | 238 })(); |
| 240 </script> | 239 </script> |
| 241 </dom-module> | 240 </dom-module> |
| OLD | NEW |