From f9ef8dbae3bbdd8627621657be11ef70ec249d19 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Wed, 13 May 2020 17:12:28 -0400 Subject: [PATCH] Update lets as consts --- js/js.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/js.js b/js/js.js index 404f8be..c407c25 100644 --- a/js/js.js +++ b/js/js.js @@ -24,7 +24,7 @@ Math.easeInOutQuad = function (t, b, c, d) { } function appendLink(id) { - let link = document.getElementById(id).nextElementSibling.querySelector('.link') + const link = document.getElementById(id).nextElementSibling.querySelector('.link') if (link) { link.innerHTML = ("Link to this command: https://amiaopensource.github.io/ffmprovisr/index.html#" + id + "") } @@ -43,7 +43,7 @@ if (window.location.hash) { } // add hash URL when recipe is opened -let recipes = document.querySelectorAll('label[class="recipe"]') +const recipes = document.querySelectorAll('label[class="recipe"]') recipes.forEach(function(item, i){ item.addEventListener("click", function(){ id = this.getAttribute("for"); @@ -54,7 +54,7 @@ recipes.forEach(function(item, i){ // open recipe when clicked -let links = document.querySelectorAll('a') +const links = document.querySelectorAll('a') links.forEach(function(item, i){ item.addEventListener("click", function(){ @@ -78,7 +78,7 @@ function getCheckedBoxes(checkboxes) { // Collapse all recipes when button is clicked document.getElementById('toggle-expand-collapse-all').addEventListener("click", function(){ - let checkboxes = document.querySelectorAll('input[type=checkbox]') + const checkboxes = document.querySelectorAll('input[type=checkbox]') var checked = getCheckedBoxes(checkboxes); if (checked) {