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

Unified Diff: tracing/tracing/ui/base/dom_helpers.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/base/dom_helpers.html
diff --git a/tracing/tracing/ui/base/dom_helpers.html b/tracing/tracing/ui/base/dom_helpers.html
index 8cbb7f88f00f5b8a946fc3e44a250eba4c3de9f2..b2ced31ed2aa480b5e5a216b4ee94c498483fc1f 100644
--- a/tracing/tracing/ui/base/dom_helpers.html
+++ b/tracing/tracing/ui/base/dom_helpers.html
@@ -122,7 +122,7 @@ tr.exportTo('tr.ui.b', function() {
for (var i = 0; i < selectorEl.children.length; i++) {
var value = selectorEl.children[i].targetPropertyValue;
if (valuesEqual(value, v)) {
- var changed = selectorEl.selectedIndex != i;
+ var changed = selectorEl.selectedIndex !== i;
if (changed) {
selectorEl.selectedIndex = i;
onChange();
« no previous file with comments | « tracing/tracing/ui/base/container_that_decorates_its_children.html ('k') | tracing/tracing/ui/base/drag_handle.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698