From 4bfdc43a721d74ef50362aec7bbd9df829651a35 Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Wed, 20 May 2020 15:15:54 -0600 Subject: [PATCH] added embedded HTML support --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 9044034..6eff1d4 100644 --- a/index.html +++ b/index.html @@ -19,7 +19,7 @@ function updateEvent() { theDeck.innerHTML = "
"+window.deck.length+"
"; window.hand.forEach(function (card) { var currentCard = elementPlace("#hand",null,"card","li"); - currentCard.innerText = card; + currentCard.innerHTML = card; }); }