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

Unified Diff: tracing/tracing/ui/analysis/multi_event_summary_table.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review 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: tracing/tracing/ui/analysis/multi_event_summary_table.html
diff --git a/tracing/tracing/ui/analysis/multi_event_summary_table.html b/tracing/tracing/ui/analysis/multi_event_summary_table.html
index 2ffcf8e2f26d7d2ba967387edd2cc6a8d0434369..290ce0cfcb477019d962a5266b44914010f9188f 100644
--- a/tracing/tracing/ui/analysis/multi_event_summary_table.html
+++ b/tracing/tracing/ui/analysis/multi_event_summary_table.html
@@ -207,7 +207,7 @@ Polymer({
alertsColumnIndex = columns.length - 1;
}
var colWidthPercentage;
- if (columns.length == 1)
+ if (columns.length === 1)
colWidthPercentage = '100%';
else
colWidthPercentage = (100 / (columns.length - 1)).toFixed(3) + '%';
« no previous file with comments | « tracing/tracing/ui/analysis/multi_event_summary.html ('k') | tracing/tracing/ui/analysis/multi_object_sub_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698