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

Unified Diff: tracing/tracing/ui/timeline_display_transform_animations.html

Issue 1753283005: Fixes some misspellings of 'animation' (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Created 4 years, 10 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: tracing/tracing/ui/timeline_display_transform_animations.html
diff --git a/tracing/tracing/ui/timeline_display_transform_animations.html b/tracing/tracing/ui/timeline_display_transform_animations.html
index 6f34e9e2607aeaa00b8e143367eed5e283953a95..7122d9ba51c840d3e5cb12a513071ca6288f9d04 100644
--- a/tracing/tracing/ui/timeline_display_transform_animations.html
+++ b/tracing/tracing/ui/timeline_display_transform_animations.html
@@ -11,7 +11,7 @@ found in the LICENSE file.
'use strict';
tr.exportTo('tr.ui', function() {
- var kDefaultPanAnimatoinDurationMs = 100.0;
+ var kDefaultPanAnimationDurationMs = 100.0;
/**
* Pans a TimelineDisplayTransform by a given amount.
@@ -20,14 +20,14 @@ tr.exportTo('tr.ui', function() {
* @param {Number} deltaX The total amount of change to the transform's panX.
* @param {Number} deltaY The total amount of change to the transform's panY.
* @param {Number=} opt_durationMs How long the pan animation should run.
- * Defaults to kDefaultPanAnimatoinDurationMs.
+ * Defaults to kDefaultPanAnimationDurationMs.
*/
function TimelineDisplayTransformPanAnimation(
deltaX, deltaY, opt_durationMs) {
this.deltaX = deltaX;
this.deltaY = deltaY;
if (opt_durationMs === undefined)
- this.durationMs = kDefaultPanAnimatoinDurationMs;
+ this.durationMs = kDefaultPanAnimationDurationMs;
else
this.durationMs = opt_durationMs;
@@ -116,7 +116,7 @@ tr.exportTo('tr.ui', function() {
this.goalFocalPointY = goalFocalPointY;
this.zoomInRatioX = zoomInRatioX;
if (opt_durationMs === undefined)
- this.durationMs = kDefaultPanAnimatoinDurationMs;
+ this.durationMs = kDefaultPanAnimationDurationMs;
else
this.durationMs = opt_durationMs;
« 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