Skip to content

Commit a24763a

Browse files
author
Jesse Borden
committed
style(hero): Remove debugger.
1 parent 7293725 commit a24763a

File tree

1 file changed

+1
-5
lines changed
  • assets/javascripts/new-javascripts

1 file changed

+1
-5
lines changed

assets/javascripts/new-javascripts/hero.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,13 @@ const heroAnimation = async (animContainer) => {
211211
},
212212
'start',
213213
)
214-
let count = 0
215214
// Purple swoop
216215
tl.add(
217216
heroSwoops[0].state,
218217
{
219218
progress: 1,
220219
duration: 950 - 950 * offScreenDelta,
221-
onUpdate: () => {
222-
swoopUpdate(heroSwoops[0])
223-
if (count++ > 0) debugger
224-
},
220+
onUpdate: () => swoopUpdate(heroSwoops[0]),
225221
},
226222
'start',
227223
)

0 commit comments

Comments
 (0)