Skip to content

Commit

Permalink
Merge pull request #115 from scriptreiter/master
Browse files Browse the repository at this point in the history
Use bracket access for 'entry' in animation config
  • Loading branch information
rictic authored Aug 8, 2017
2 parents 2250910 + 7cb8901 commit 725dd34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paper-tooltip.html
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@
this.toggleClass('hidden', false, this.$.tooltip);
this.updatePosition();

this.animationConfig.entry[0].timing = this.animationConfig.entry[0].timing || {};
this.animationConfig.entry[0].timing.delay = this.animationDelay;
this.animationConfig['entry'][0].timing = this.animationConfig['entry'][0].timing || {};
this.animationConfig['entry'][0].timing.delay = this.animationDelay;
this._animationPlaying = true;
this.playAnimation('entry');
},
Expand Down

0 comments on commit 725dd34

Please sign in to comment.