From 899779b3c4bcecd177929936704ad6f67f0128df Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 19 Sep 2016 16:30:56 -0400 Subject: [PATCH] FIX: Confetti should go all the way to the right --- app/assets/javascripts/wizard/components/wizard-canvas.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 b/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 index 269bf7b9e..260485bd2 100644 --- a/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 +++ b/app/assets/javascripts/wizard/components/wizard-canvas.js.es6 @@ -14,7 +14,7 @@ class Particle { reset() { this.y = -SIZE; - this.origX = Math.random() * width; + this.origX = Math.random() * (width + SIZE); this.speed = 1 + Math.random(); this.ang = Math.random() * 2 * Math.PI; this.scale = (Math.random() * 0.5);