Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2454303002: [MD History] Add full time hover text to dates in history items. (Closed)
Patch Set: fix nit Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html><head><!-- 1 <html><head><!--
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 3219 matching lines...) Expand 10 before | Expand all | Expand 10 after
3230 <div id="background-clip"> 3230 <div id="background-clip">
3231 <div id="background"></div> 3231 <div id="background"></div>
3232 </div> 3232 </div>
3233 <div id="date-accessed" class="card-title"> 3233 <div id="date-accessed" class="card-title">
3234 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] 3234 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]]
3235 </div> 3235 </div>
3236 <div id="item-container"> 3236 <div id="item-container">
3237 <button is="paper-icon-button-light" id="checkbox" on-mousedown="onCheck boxMousedown_" on-click="onCheckboxSelected_" disabled="[[selectionNotAllowed_() ]]" role="checkbox" aria-checked$="[[getAriaChecked_(selected)]]" aria-label$="[ [getEntrySummary_(item)]]"> 3237 <button is="paper-icon-button-light" id="checkbox" on-mousedown="onCheck boxMousedown_" on-click="onCheckboxSelected_" disabled="[[selectionNotAllowed_() ]]" role="checkbox" aria-checked$="[[getAriaChecked_(selected)]]" aria-label$="[ [getEntrySummary_(item)]]">
3238 <div id="checkmark"></div> 3238 <div id="checkmark"></div>
3239 </button> 3239 </button>
3240 <span id="time-accessed">[[item.readableTimestamp]]</span> 3240 <span id="time-accessed" on-mouseover="addTimeTitle_">
3241 [[item.readableTimestamp]]
3242 </span>
3241 <div class="website-icon" id="icon"></div> 3243 <div class="website-icon" id="icon"></div>
3242 <div id="title-and-domain"> 3244 <div id="title-and-domain">
3243 <a href="[[item.url]]" id="title" class="website-title" title="[[item. title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> 3245 <a href="[[item.url]]" id="title" class="website-title" title="[[item. title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_">
3244 <history-searched-label title="[[item.title]]" search-term="[[search Term]]"></history-searched-label> 3246 <history-searched-label title="[[item.title]]" search-term="[[search Term]]"></history-searched-label>
3245 </a> 3247 </a>
3246 <span id="domain">[[item.domain]]</span> 3248 <span id="domain">[[item.domain]]</span>
3247 </div> 3249 </div>
3248 <div id="star-container"> 3250 <div id="star-container">
3249 <template is="dom-if" if="[[item.starred]]"> 3251 <template is="dom-if" if="[[item.starred]]">
3250 <button is="paper-icon-button-light" id="bookmark-star" title="$i18n {removeBookmark}" on-click="onRemoveBookmarkTap_"> 3252 <button is="paper-icon-button-light" id="bookmark-star" title="$i18n {removeBookmark}" on-click="onRemoveBookmarkTap_">
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
3960 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer=""> 3962 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer="">
3961 </history-side-bar> 3963 </history-side-bar>
3962 </app-drawer> 3964 </app-drawer>
3963 </template> 3965 </template>
3964 3966
3965 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 3967 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
3966 </iron-media-query> 3968 </iron-media-query>
3967 </template> 3969 </template>
3968 </dom-module> 3970 </dom-module>
3969 <script src="app.crisper.js"></script></body></html> 3971 <script src="app.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.crisper.js ('k') | chrome/browser/resources/md_history/history_item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698