Index: tracing/tracing/model/location.html |
diff --git a/tracing/tracing/model/location.html b/tracing/tracing/model/location.html |
index 11d31eef7e4d9294218481cfb5dafa7a4afd9650..8654157172d2f4066b8ca2f1cc7c82aed6ada61d 100644 |
--- a/tracing/tracing/model/location.html |
+++ b/tracing/tracing/model/location.html |
@@ -41,7 +41,7 @@ tr.exportTo('tr.model', function() { |
function Location(xWorld, yComponents) { |
this.xWorld_ = xWorld; |
this.yComponents_ = yComponents; |
- }; |
+ } |
/** |
* Returns a new Location given by x and y coordinates with respect to |
@@ -69,7 +69,7 @@ tr.exportTo('tr.model', function() { |
elem = elem.parentElement; |
} |
- if (yComponents.length == 0) |
+ if (yComponents.length === 0) |
return; |
return new Location(xWorld, yComponents); |
} |
@@ -96,7 +96,7 @@ tr.exportTo('tr.model', function() { |
elem = elem.parentElement; |
} |
- if (yComponents.length == 0) |
+ if (yComponents.length === 0) |
return; |
return new Location(xWorld, yComponents); |
} |