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

Unified Diff: tracing/tracing/value/ui/generic_table_view.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
« no previous file with comments | « tracing/tracing/value/numeric.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/value/ui/generic_table_view.html
diff --git a/tracing/tracing/value/ui/generic_table_view.html b/tracing/tracing/value/ui/generic_table_view.html
index cf1e687b364416c242034ad64e62a0d818a6c8fe..f88debafc1bc3c0cf7bf67ced511d83e55fee47e 100644
--- a/tracing/tracing/value/ui/generic_table_view.html
+++ b/tracing/tracing/value/ui/generic_table_view.html
@@ -214,7 +214,7 @@ tr.exportTo('tr.v.ui', function() {
// Set sizes. This is convoluted by the fact that the first
// table column must have fixed size.
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/value/numeric.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698