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

Unified Diff: dashboard/dashboard/elements/chart-legend.html

Issue 2170613002: Fix incorrect use of 'this' in chart-legend. (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/chart-legend.html
diff --git a/dashboard/dashboard/elements/chart-legend.html b/dashboard/dashboard/elements/chart-legend.html
index 7915203e6966a738ca155f9bb095d5ab57e53f46..e7c1ed9d1bfbdb49e8c8e6a8faae78254aaa506a 100644
--- a/dashboard/dashboard/elements/chart-legend.html
+++ b/dashboard/dashboard/elements/chart-legend.html
@@ -354,7 +354,7 @@ found in the LICENSE file.
} else {
allUnselected.push(test);
}
- });
+ }.bind(this));
if (this.importantSelected(seriesGroup.tests)) {
this.set(
@@ -473,7 +473,7 @@ found in the LICENSE file.
'.hidden',
false);
}
- });
+ }.bind(this));
this.updateNumHidden(groupIndex);
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698