From 29059f552223d70bdab287b0d121567cec0ed6c7 Mon Sep 17 00:00:00 2001 From: mattkae Date: Wed, 22 Jun 2022 20:32:28 -0400 Subject: Update of resume --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'index.js') diff --git a/index.js b/index.js index d6a4d6e..f666098 100644 --- a/index.js +++ b/index.js @@ -15,7 +15,7 @@ function runCarousel() { // Carousel logic var carouselPosition = 0, numImages = imageContainer.children.length; - + function onCarouselRight() { carouselPosition = (carouselPosition + 1); @@ -24,7 +24,7 @@ function runCarousel() { } updateCarousel(); } - + function onCarouselLeft() { carouselPosition = (carouselPosition - 1); if (carouselPosition < 0) { @@ -34,7 +34,7 @@ function runCarousel() { } function onImageClicked() { - var background = document.createElement('div'); + var background = document.createElement('div'); // background.classList.add('carousel_image_expanded_container'); var clone = this.cloneNode(true); clone.classList.add('expanded'); -- cgit v1.2.1