| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon
/iron-icon.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
| 3 <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-icon/iron-icon.htm
l"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.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-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 9 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 9 | 10 |
| 10 <dom-module id="settings-edit-dictionary-page"> | 11 <dom-module id="settings-edit-dictionary-page"> |
| 11 <template> | 12 <template> |
| 12 <style include="settings-shared"> | 13 <style include="settings-shared"> |
| 13 :host { | 14 :host { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 43 </paper-button> | 44 </paper-button> |
| 44 </div> | 45 </div> |
| 45 </div> | 46 </div> |
| 46 <div class="settings-box block"> | 47 <div class="settings-box block"> |
| 47 <h2>$i18n{customDictionaryWords}</h2> | 48 <h2>$i18n{customDictionaryWords}</h2> |
| 48 <div class="list-frame"> | 49 <div class="list-frame"> |
| 49 <iron-list id="list" items="{{words_}}"> | 50 <iron-list id="list" items="{{words_}}"> |
| 50 <template> | 51 <template> |
| 51 <div class="list-item"> | 52 <div class="list-item"> |
| 52 <div class="word">[[item]]</div> | 53 <div class="word">[[item]]</div> |
| 53 <paper-icon-button icon="clear" on-tap="onRemoveWordTap_"> | 54 <paper-icon-button icon="cr:clear" on-tap="onRemoveWordTap_"> |
| 54 </paper-icon-button> | 55 </paper-icon-button> |
| 55 </div> | 56 </div> |
| 56 </template> | 57 </template> |
| 57 </iron-list> | 58 </iron-list> |
| 58 </div> | 59 </div> |
| 59 </div> | 60 </div> |
| 60 </template> | 61 </template> |
| 61 <script src="edit_dictionary_page.js"></script> | 62 <script src="edit_dictionary_page.js"></script> |
| 62 </dom-module> | 63 </dom-module> |
| OLD | NEW |