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

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

Issue 2656443004: MD History: Add routing for grouped history mode. (Closed)
Patch Set: Tweak Created 3 years, 11 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_toolbar.html
diff --git a/chrome/browser/resources/md_history/history_toolbar.html b/chrome/browser/resources/md_history/history_toolbar.html
index 78a773e1aa682f389588388c3c637488c4e8ebd1..3e29889113de960629efd453f5d6dc56af1a2274 100644
--- a/chrome/browser/resources/md_history/history_toolbar.html
+++ b/chrome/browser/resources/md_history/history_toolbar.html
@@ -234,7 +234,7 @@
id="today-button"
class="icon-button"
title="$i18n{rangeToday}"
- on-tap="onTodayTap_"
+ on-click="onTodayTap_"
disabled="[[isToday_(groupedOffset)]]">
<iron-icon icon="history:today"></iron-icon>
</button>
@@ -242,7 +242,7 @@
id="prev-button"
title="$i18n{rangePrevious}"
class="icon-button rtl-reversible"
- on-tap="onPrevTap_"
+ on-click="onPrevTap_"
disabled="[[!hasMoreResults]]">
<iron-icon icon="history:chevron-left"></iron-icon>
</button>
@@ -250,7 +250,7 @@
id="next-button"
title="$i18n{rangeNext}"
class="icon-button rtl-reversible"
- on-tap="onNextTap_"
+ on-click="onNextTap_"
disabled="[[isToday_(groupedOffset)]]">
<iron-icon icon="cr:chevron-right"></iron-icon>
</button>

Powered by Google App Engine
This is Rietveld 408576698