From 44bb506a57e2e08293440ae1230e9d209ed99777 Mon Sep 17 00:00:00 2001 From: Connor L Jackson Date: Thu, 23 Feb 2017 23:59:14 -0500 Subject: [PATCH] Image functionality fixed on Device Listing --- WebContent/html/javascript/listing.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebContent/html/javascript/listing.jsp b/WebContent/html/javascript/listing.jsp index b41f1f9..b9b2c73 100644 --- a/WebContent/html/javascript/listing.jsp +++ b/WebContent/html/javascript/listing.jsp @@ -80,7 +80,7 @@ showAll(); function showAll(){ var html = ''; for(var i = 0; i < devices.length; i++){ - html += '
' + devices[i].name + '

' + devices[i].description + '



'; + html += '
' + devices[i].name + '

' + devices[i].description + '



'; } document.getElementById('devContainer').innerHTML = html; var unavailable = getUnavailableItems();