| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| 9 <link rel="import" href="chrome://extensions/animation_helper.html"> | 9 <link rel="import" href="chrome://extensions/animation_helper.html"> |
| 10 <link rel="import" href="chrome://extensions/item_source.html"> |
| 10 | 11 |
| 11 <dom-module id="extensions-detail-view"> | 12 <dom-module id="extensions-detail-view"> |
| 12 <style include="iron-flex"></style> | 13 <style include="iron-flex"></style> |
| 13 <template> | 14 <template> |
| 14 <style> | 15 <style> |
| 15 #main { | 16 #main { |
| 16 background-color: white; | 17 background-color: white; |
| 17 height: 800px; | 18 height: 800px; |
| 18 width: 90%; | 19 width: 90%; |
| 19 } | 20 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 <paper-checkbox id="collect-errors" class="checkbox" | 129 <paper-checkbox id="collect-errors" class="checkbox" |
| 129 checked="[[data.errorCollection.isActive]]" | 130 checked="[[data.errorCollection.isActive]]" |
| 130 on-change="onCollectErrorsChange_"> | 131 on-change="onCollectErrorsChange_"> |
| 131 $i18n{itemCollectErrors} | 132 $i18n{itemCollectErrors} |
| 132 </paper-checkbox> | 133 </paper-checkbox> |
| 133 </template> | 134 </template> |
| 134 </div> | 135 </div> |
| 135 </template> | 136 </template> |
| 136 <div class="section"> | 137 <div class="section"> |
| 137 <div class="section-title">$i18n{itemSource}</div> | 138 <div class="section-title">$i18n{itemSource}</div> |
| 138 <div class="section-content">TODO</div> | 139 <div class="section-content"> |
| 140 [[computeSourceString_(data.*)]] |
| 141 </div> |
| 139 </div> | 142 </div> |
| 140 </div> | 143 </div> |
| 141 </template> | 144 </template> |
| 142 <script src="chrome://extensions/detail_view.js"></script> | 145 <script src="chrome://extensions/detail_view.js"></script> |
| 143 </dom-module> | 146 </dom-module> |
| OLD | NEW |