From 3b487967dc9467246abf102c0f11b75bf1ad0e67 Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Fri, 7 May 2021 13:56:09 -0600 Subject: [PATCH] separated date and post into separate elements in the dropin so they can easily be styled by the end user. --- dropin.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropin.html b/dropin.html index 22da729..d60fa50 100644 --- a/dropin.html +++ b/dropin.html @@ -7,7 +7,7 @@ function renderShomb(data) { var parsedData = eval(data); parsedData.forEach(function (entry) { var myEntry = elementPlace("#shombleList",null,"shomb_post","li"); - myEntry.innerHTML = '
'+entry.USER+'
'+entry.DATE+" -- "+entry.POST+'
'; + myEntry.innerHTML = '
'+entry.USER+'
'++entry.POST+'
'+entry.DATE+'
'; }); } getData("shomble/get.pl", renderShomb);