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

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

Issue 2376613002: MD History: Replace tap listeners with click listeners for icon-button-light (Closed)
Patch Set: Created 4 years, 2 months 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2702 matching lines...) Expand 10 before | Expand all | Expand 10 after
2713 2713
2714 :host-context([dir=rtl]) .rtl-reversible { 2714 :host-context([dir=rtl]) .rtl-reversible {
2715 transform: rotate(180deg); 2715 transform: rotate(180deg);
2716 } 2716 }
2717 2717
2718 </style> 2718 </style>
2719 <div id="toolbar-container"> 2719 <div id="toolbar-container">
2720 <cr-toolbar id="main-toolbar" page-name="$i18n{title}" clear-label="$i18n{ clearSearch}" search-prompt="$i18n{searchPrompt}" hidden$="[[itemsSelected_]]" s pinner-active="[[spinnerActive]]" show-menu="[[hasDrawer]]" show-menu-promo="[[s howMenuPromo_]]" menu-label="$i18n{historyMenuButton}" menu-promo="$i18n{menuPro mo}" close-menu-promo="$i18n{closeMenuPromo}" on-search-changed="onSearchChanged _" on-cr-menu-promo-shown="onMenuPromoShown_"> 2720 <cr-toolbar id="main-toolbar" page-name="$i18n{title}" clear-label="$i18n{ clearSearch}" search-prompt="$i18n{searchPrompt}" hidden$="[[itemsSelected_]]" s pinner-active="[[spinnerActive]]" show-menu="[[hasDrawer]]" show-menu-promo="[[s howMenuPromo_]]" menu-label="$i18n{historyMenuButton}" menu-promo="$i18n{menuPro mo}" close-menu-promo="$i18n{closeMenuPromo}" on-search-changed="onSearchChanged _" on-cr-menu-promo-shown="onMenuPromoShown_">
2721 <div class="more-actions"> 2721 <div class="more-actions">
2722 <template is="dom-if" if="[[showSyncNotice]]"> 2722 <template is="dom-if" if="[[showSyncNotice]]">
2723 <button is="paper-icon-button-light" id="info-button" on-tap="onInfo ButtonTap_" aria-label="$i18n{hasSyncedResultsDescription}"> 2723 <button is="paper-icon-button-light" id="info-button" on-click="onIn foButtonTap_" aria-label="$i18n{hasSyncedResultsDescription}">
2724 <iron-icon icon="history:info-outline" id="info-button-icon"> 2724 <iron-icon icon="history:info-outline" id="info-button-icon">
2725 </iron-icon> 2725 </iron-icon>
2726 </button> 2726 </button>
2727 </template> 2727 </template>
2728 </div> 2728 </div>
2729 </cr-toolbar> 2729 </cr-toolbar>
2730 <template is="cr-lazy-render" id="syncNotice"> 2730 <template is="cr-lazy-render" id="syncNotice">
2731 <iron-dropdown vertical-align="top" horizontal-align="right" allow-outsi de-scroll=""> 2731 <iron-dropdown vertical-align="top" horizontal-align="right" allow-outsi de-scroll="">
2732 <div class="dropdown-content"> 2732 <div class="dropdown-content">
2733 $i18nRaw{hasSyncedResults} 2733 $i18nRaw{hasSyncedResults}
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
3236 <span id="time-accessed">[[item.readableTimestamp]]</span> 3236 <span id="time-accessed">[[item.readableTimestamp]]</span>
3237 <div class="website-icon" id="icon"></div> 3237 <div class="website-icon" id="icon"></div>
3238 <div id="title-and-domain"> 3238 <div id="title-and-domain">
3239 <a href="[[item.url]]" id="title" class="website-title" title="[[ite m.title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> 3239 <a href="[[item.url]]" id="title" class="website-title" title="[[ite m.title]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_">
3240 <history-searched-label title="[[item.title]]" search-term="[[sear chTerm]]"></history-searched-label> 3240 <history-searched-label title="[[item.title]]" search-term="[[sear chTerm]]"></history-searched-label>
3241 </a> 3241 </a>
3242 <span id="domain">[[item.domain]]</span> 3242 <span id="domain">[[item.domain]]</span>
3243 </div> 3243 </div>
3244 <div id="star-container"> 3244 <div id="star-container">
3245 <template is="dom-if" if="[[item.starred]]"> 3245 <template is="dom-if" if="[[item.starred]]">
3246 <button is="paper-icon-button-light" id="bookmark-star" title="$i1 8n{removeBookmark}" on-tap="onRemoveBookmarkTap_"> 3246 <button is="paper-icon-button-light" id="bookmark-star" title="$i1 8n{removeBookmark}" on-click="onRemoveBookmarkTap_">
3247 <iron-icon icon="cr:star"></iron-icon> 3247 <iron-icon icon="cr:star"></iron-icon>
3248 </button> 3248 </button>
3249 </template> 3249 </template>
3250 </div> 3250 </div>
3251 <button is="paper-icon-button-light" id="menu-button" class="more-vert -button" title="$i18n{moreActionsButton}" on-tap="onMenuButtonTap_"> 3251 <button is="paper-icon-button-light" id="menu-button" class="more-vert -button" title="$i18n{moreActionsButton}" on-click="onMenuButtonTap_">
3252 <div></div> 3252 <div></div>
3253 <div></div> 3253 <div></div>
3254 <div></div> 3254 <div></div>
3255 </button> 3255 </button>
3256 </div> 3256 </div>
3257 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> 3257 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div>
3258 </div> 3258 </div>
3259 </div> 3259 </div>
3260 </template> 3260 </template>
3261 </dom-module> 3261 </dom-module>
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
3927 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer=""> 3927 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer="">
3928 </history-side-bar> 3928 </history-side-bar>
3929 </app-drawer> 3929 </app-drawer>
3930 </template> 3930 </template>
3931 3931
3932 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 3932 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
3933 </iron-media-query> 3933 </iron-media-query>
3934 </template> 3934 </template>
3935 </dom-module> 3935 </dom-module>
3936 <script src="app.crisper.js"></script></body></html> 3936 <script src="app.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698