| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 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-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.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-styles/shadow.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 9 <link rel="import" href="chrome://bookmarks/item.html"> | 9 <link rel="import" href="chrome://bookmarks/item.html"> |
| 10 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 10 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 $i18n{cancelEdit} | 67 $i18n{cancelEdit} |
| 68 </paper-button> | 68 </paper-button> |
| 69 <paper-button class="action-button" on-tap="onSaveEditTap_" | 69 <paper-button class="action-button" on-tap="onSaveEditTap_" |
| 70 id='saveButton'> | 70 id='saveButton'> |
| 71 $i18n{saveEdit} | 71 $i18n{saveEdit} |
| 72 </paper-button> | 72 </paper-button> |
| 73 </div> | 73 </div> |
| 74 </dialog> | 74 </dialog> |
| 75 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList_.length)]]"> | 75 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList_.length)]]"> |
| 76 <template is="dom-repeat" items="[[displayedList_]]" as="id"> | 76 <template is="dom-repeat" items="[[displayedList_]]" as="id"> |
| 77 <bookmarks-item item-id="[[id]]"> | 77 <bookmarks-item item-id="[[id]]" draggable="true"> |
| 78 </bookmarks-item> | 78 </bookmarks-item> |
| 79 </template> | 79 </template> |
| 80 </div> | 80 </div> |
| 81 <div class="centered-message" | 81 <div class="centered-message" |
| 82 hidden$="[[!isEmptyList_(displayedList_.length)]]"> | 82 hidden$="[[!isEmptyList_(displayedList_.length)]]"> |
| 83 [[emptyListMessage_(searchTerm_)]] | 83 [[emptyListMessage_(searchTerm_)]] |
| 84 </div> | 84 </div> |
| 85 </template> | 85 </template> |
| 86 <script src="chrome://bookmarks/list.js"></script> | 86 <script src="chrome://bookmarks/list.js"></script> |
| 87 </dom-module> | 87 </dom-module> |
| OLD | NEW |