| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 </dialog> | 48 </dialog> |
| 49 <dialog is="cr-dialog" id="editBookmark"> | 49 <dialog is="cr-dialog" id="editBookmark"> |
| 50 <div class="title">$i18n{editBookmarkTitle}</div> | 50 <div class="title">$i18n{editBookmarkTitle}</div> |
| 51 <div class="body"> | 51 <div class="body"> |
| 52 <paper-input always-float-label id="name" | 52 <paper-input always-float-label id="name" |
| 53 label="$i18n{editDialogNameInput}" | 53 label="$i18n{editDialogNameInput}" |
| 54 value="{{menuItem_.title}}"> | 54 value="{{menuItem_.title}}"> |
| 55 </paper-input> | 55 </paper-input> |
| 56 <paper-input always-float-label id="url" | 56 <paper-input always-float-label id="url" |
| 57 label="$i18n{editDialogUrlInput}" | 57 label="$i18n{editDialogUrlInput}" |
| 58 value="{{menuItem_.url}}"> | 58 value="{{menuItem_.url}}" |
| 59 hidden$="[[hideUrlInput_]]"> |
| 59 </paper-input> | 60 </paper-input> |
| 60 </div> | 61 </div> |
| 61 <div class="button-container"> | 62 <div class="button-container"> |
| 62 <paper-button class="cancel-button" on-tap="onCancelEditTap_"> | 63 <paper-button class="cancel-button" on-tap="onCancelEditTap_"> |
| 63 $i18n{cancelEdit} | 64 $i18n{cancelEdit} |
| 64 </paper-button> | 65 </paper-button> |
| 65 <paper-button class="action-button" on-tap="onSaveEditTap_"> | 66 <paper-button class="action-button" on-tap="onSaveEditTap_"> |
| 66 $i18n{saveEdit} | 67 $i18n{saveEdit} |
| 67 </paper-button> | 68 </paper-button> |
| 68 </div> | 69 </div> |
| 69 </dialog> | 70 </dialog> |
| 70 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]"> | 71 <div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]"> |
| 71 <template is="dom-repeat" items="[[displayedList]]" as="item"> | 72 <template is="dom-repeat" items="[[displayedList]]" as="item"> |
| 72 <bookmarks-item item="[[item]]"></bookmarks-item> | 73 <bookmarks-item item="[[item]]"></bookmarks-item> |
| 73 </template> | 74 </template> |
| 74 </div> | 75 </div> |
| 75 <div class="centered-message" | 76 <div class="centered-message" |
| 76 hidden$="[[!isEmptyList_(displayedList.length)]]"> | 77 hidden$="[[!isEmptyList_(displayedList.length)]]"> |
| 77 [[emptyListMessage_(searchTerm)]] | 78 [[emptyListMessage_(searchTerm)]] |
| 78 </div> | 79 </div> |
| 79 </template> | 80 </template> |
| 80 <script src="chrome://bookmarks/list.js"></script> | 81 <script src="chrome://bookmarks/list.js"></script> |
| 81 </dom-module> | 82 </dom-module> |
| OLD | NEW |