From 4f1de2f60005eda6a64beb1bc3e070553c09fc3a Mon Sep 17 00:00:00 2001
From: Val <35149642+vkservicesllc@users.noreply.github.com>
Date: Wed, 29 Apr 2020 13:59:06 -0400
Subject: [PATCH] Update test.html
---
app-new/test.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/app-new/test.html b/app-new/test.html
index 5919c63..30873d1 100644
--- a/app-new/test.html
+++ b/app-new/test.html
@@ -10,11 +10,11 @@
$.ajax({
url: 'https://raw.githubusercontent.com/CarolinaLogistic/linkboard/master/json/ss_payroll-weeks.json',
success: function(json) {
- const data = JSON.parse(json);
- let content = '';
- for (let date in data)
- content += date + ' ' + data[date] + '
;
- $('output').html(content);
+// const data = JSON.parse(json);
+// let content = '';
+// for (let date in data)
+// content += date + ' ' + data[date] + '
;
+ $('output').html(json);
}
});