From 67ee2a8d5980dd1cfc91fb07b5309dfac313e1b6 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 13 Oct 2022 14:47:54 -0700 Subject: [PATCH] Fixed bug from script calling the colorblocks() function after it had been commented out. Commenting out those calls fixed bug on chrome --- CONTRIBUTORS.md | 1 + script.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index c2a50a5..fa8156b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -14,3 +14,4 @@ We are very grateful to the following people have contributed to this project. - [Rahul Chaudhary](https://github.com/rahulchaudhary2244) - [Amit Kumar](https://github.com/goodchai0) - [Reuben Antz](https://github.com/wizeewig) +- [WFM366](https://github.com/wfm366) diff --git a/script.js b/script.js index 63b6307..03fd9d4 100644 --- a/script.js +++ b/script.js @@ -133,7 +133,7 @@ $(function(){ if(localStorage.getItem(date)){ refreshItems() }else{ - colorBlocks() + // colorBlocks() } } @@ -214,7 +214,7 @@ $(function(){ }) }) } - colorBlocks() + // colorBlocks() }