From 53e2d27db52936ab94c332af1e7824704a637654 Mon Sep 17 00:00:00 2001 From: John Pratt Date: Mon, 28 Oct 2024 10:01:21 -0600 Subject: [PATCH 1/3] add nala folder in mep folder --- libs/mep/nala/script.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 libs/mep/nala/script.js diff --git a/libs/mep/nala/script.js b/libs/mep/nala/script.js new file mode 100644 index 0000000000..0bf672843d --- /dev/null +++ b/libs/mep/nala/script.js @@ -0,0 +1,5 @@ +//give a one-second delay to allow the DOM structure to exist + +setTimeout(function() { + document.querySelector("body").style.color="orange"; +}, 1000); From 892ee544f99f8de2a8ccebda601b59ce916402f7 Mon Sep 17 00:00:00 2001 From: John Pratt Date: Mon, 28 Oct 2024 10:10:11 -0600 Subject: [PATCH 2/3] Update libs/mep/nala/script.js Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- libs/mep/nala/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mep/nala/script.js b/libs/mep/nala/script.js index 0bf672843d..9ea183710d 100644 --- a/libs/mep/nala/script.js +++ b/libs/mep/nala/script.js @@ -1,4 +1,4 @@ -//give a one-second delay to allow the DOM structure to exist +// give a one-second delay to allow the DOM structure to exist setTimeout(function() { document.querySelector("body").style.color="orange"; From 85e817a55133899db4a5d4c772ef92c5cdae5c88 Mon Sep 17 00:00:00 2001 From: John Pratt Date: Mon, 28 Oct 2024 10:10:53 -0600 Subject: [PATCH 3/3] Update libs/mep/nala/script.js Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- libs/mep/nala/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mep/nala/script.js b/libs/mep/nala/script.js index 9ea183710d..080083f993 100644 --- a/libs/mep/nala/script.js +++ b/libs/mep/nala/script.js @@ -1,5 +1,5 @@ // give a one-second delay to allow the DOM structure to exist -setTimeout(function() { +setTimeout(function () { document.querySelector("body").style.color="orange"; }, 1000);