Skip to content

Commit 818343f

Browse files
committed
Fixed lint errors with PR phaserjs#5159
1 parent b06f498 commit 818343f

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

src/gameobjects/components/Animation.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,13 @@ var Animation = new Class({
330330
key = key.key;
331331
}
332332

333-
if(this.nextAnim === null){
334-
this.nextAnim = key;
335-
} else {
336-
this.nextAnimsQueue.push(key);
333+
if (this.nextAnim === null)
334+
{
335+
this.nextAnim = key;
336+
}
337+
else
338+
{
339+
this.nextAnimsQueue.push(key);
337340
}
338341

339342
return this.parent;

0 commit comments

Comments
 (0)