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

Unified Diff: chrome/browser/resources/md_history/history_item.html

Issue 2409063003: MD History: Select items when tapping anywhere inside the item (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/history_item.html
diff --git a/chrome/browser/resources/md_history/history_item.html b/chrome/browser/resources/md_history/history_item.html
index 607800727f48b55938d05b32b7ef1010460841ac..065f48881d6eb5152abec7850444e96200cdfc7c 100644
--- a/chrome/browser/resources/md_history/history_item.html
+++ b/chrome/browser/resources/md_history/history_item.html
@@ -210,10 +210,10 @@
<div id="date-accessed" class="card-title">
[[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]]
</div>
- <div id="item-container">
+ <div id="item-container"
+ on-mousedown="onItemMousedown_"
+ on-click="onItemClick_">
<button is="paper-icon-button-light" id="checkbox"
- on-mousedown="onCheckboxMousedown_"
- on-click="onCheckboxSelected_"
disabled="[[selectionNotAllowed_()]]"
role="checkbox"
aria-checked$="[[getAriaChecked_(selected)]]"

Powered by Google App Engine
This is Rietveld 408576698