Removed logs.

This commit is contained in:
Richard Davey 2017-05-18 02:33:15 +01:00
parent 90132a7a6f
commit 5ba2a6ca64
2 changed files with 1 additions and 9 deletions

View file

@ -1,4 +1,4 @@
var CHECKSUM = {
build: 'aee01c90-3b68-11e7-a88a-0b109883fb15'
build: 'bf75e930-3b69-11e7-9275-855e5660a97d'
};
module.exports = CHECKSUM;

View file

@ -7,14 +7,10 @@ var PlayNext = function ()
if (tweenData.next)
{
console.log('next');
this.setCurrentTweenData(tweenData.next);
}
else if (this.loop)
{
console.log('loop', this.loopDelay);
// leaves the state in PENDING_RENDER
this.setCurrentTweenData(this.data[0]);
@ -28,15 +24,11 @@ var PlayNext = function ()
}
else if (this.completeDelay > 0)
{
console.log('completeDelay');
this.countdown = this.completeDelay;
this.state = TWEEN_CONST.COMPLETE_DELAY;
}
else
{
console.log('complete');
this.state = TWEEN_CONST.PENDING_REMOVE;
}
};