Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
polymer-animation: startDelay -> delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvonne Yip committed Aug 26, 2013
1 parent 270426a commit ea7e426
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions polymer-animation/polymer-animation.html
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -219,7 +219,7 @@
iterationCountChanged: function() {
this.asyncApply();
},
startDelayChanged: function() {
delayChanged: function() {
this.asyncApply();
},
directionChanged: function() {
Expand All @@ -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}
Expand Down

0 comments on commit ea7e426

Please sign in to comment.