'
\ No newline at end of file
diff --git a/html/javascript/request.js b/html/javascript/request.js
index 013bc49..4efcdf7 100644
--- a/html/javascript/request.js
+++ b/html/javascript/request.js
@@ -66,7 +66,7 @@ function show(){
//iterate through the hardcoded device DB and select all the ones that match the selected option
for(var i = 0; i < devices.length; i++){
if((type.localeCompare(devices[i].hardware) == 0 || type.localeCompare(devices[i].software) == 0) && !isUnavailable(i)){
- html += '
' + devices[i].name + '
' + devices[i].description + '
'
+ html += '
' + devices[i].name + '
' + devices[i].description + '
'
}
}
diff --git a/html/javascript/shoppingCart.js b/html/javascript/shoppingCart.js
index 95a8ed1..d170c72 100644
--- a/html/javascript/shoppingCart.js
+++ b/html/javascript/shoppingCart.js
@@ -75,6 +75,7 @@ function show(){
var cart = getCartItems(); //get all the cart items you want to show
var html = ''; //html string initially empty
if(cart.length !== 0){ //only continue if there are cart items
+ html += '
Tickets have been generated below based on your desired selections.