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

Unified Diff: chrome/browser/resources/md_history/app.crisper.js

Issue 2333163002: MD History: Remove isFirstItem property from history-item (Closed)
Patch Set: Fix sizing Created 4 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.vulcanized.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_history/app.crisper.js
diff --git a/chrome/browser/resources/md_history/app.crisper.js b/chrome/browser/resources/md_history/app.crisper.js
index 8d12dc9b2acc3404c50574e36a829109968e579b..87f740f7a0da36584610210a1a3acf2a48624938 100644
--- a/chrome/browser/resources/md_history/app.crisper.js
+++ b/chrome/browser/resources/md_history/app.crisper.js
@@ -6711,10 +6711,6 @@ cr.define('md_history', function() {
type: Boolean,
reflectToAttribute: true
},
- isFirstItem: {
- type: Boolean,
- reflectToAttribute: true
- },
isCardStart: {
type: Boolean,
reflectToAttribute: true
@@ -8058,9 +8054,6 @@ Polymer({
if (length == 0 || i > length - 1) return false;
return i == length - 1 || this.historyData_[i].dateRelativeDay != this.historyData_[i + 1].dateRelativeDay;
},
- isFirstItem_: function(index) {
- return index == 0;
- },
notifyListScroll_: function() {
this.fire('history-list-scrolled');
},
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.vulcanized.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698