From ea7e42630469958f94fb487fc185ed5e3220f529 Mon Sep 17 00:00:00 2001 From: Yvonne Yip Date: Mon, 26 Aug 2013 12:14:05 -0700 Subject: [PATCH] polymer-animation: startDelay -> delay --- polymer-animation/polymer-animation.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/polymer-animation/polymer-animation.html b/polymer-animation/polymer-animation.html index 5d44606..4123eaf 100644 --- a/polymer-animation/polymer-animation.html +++ b/polymer-animation/polymer-animation.html @@ -115,11 +115,11 @@ */ iterationCount: 1, /** - * Start delay in milliseconds. - * @property startDelay + * Delay in milliseconds. + * @property delay * @type Number */ - startDelay: 0, + delay: 0, /** * "normal", "reverse", "alternate" or "alternate-reverse". * @property direction @@ -219,7 +219,7 @@ iterationCountChanged: function() { this.asyncApply(); }, - startDelayChanged: function() { + delayChanged: function() { this.asyncApply(); }, directionChanged: function() { @@ -233,7 +233,7 @@ var timing = { fillMode: {}, easing: {property: 'timingFunction'}, - startDelay: {isNumber: true}, + delay: {isNumber: true}, iterationCount: {isNumber: true, allowInfinity: true}, direction: {}, duration: {property: 'duration', isNumber: true}