Skip to content

Commit

Permalink
Basic Timestamp Added to Site
Browse files Browse the repository at this point in the history
  • Loading branch information
ggriffey committed Mar 1, 2024
1 parent 87e9bc6 commit 18ab4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fetch("./data/sites.json")

//
const p = $(".properties").append(
`<p id="listing${i}" class="listing"> <span class="price">$${listingInfo.price} </span> \u00A0\u00A0\u00A0 <span class="beds-baths"> ${listingInfo.beds}Bd / ${listingInfo.baths}bth </span>
`<p id="listing${i}" class="listing"> <span class="timestamp">(${listingInfo.timestamp})\u00A0 - \u00A0</span> <span class="price">$${listingInfo.price} </span> \u00A0\u00A0 <span class="beds-baths"> ${listingInfo.beds}Bd / ${listingInfo.baths}bth </span>
\u00A0\u00A0\u00A0 <span class="address">${property[0]}:</span> \u00A0\u00A0\u00A0 <span class="name-tags">${nameTags} </span> </p>
<input type="text id="listing-notes" name="notes">`
Expand Down

0 comments on commit 18ab4c2

Please sign in to comment.