aboutsummaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
authorKumar Priyansh <[email protected]>2019-06-03 05:45:20 +0530
committerKumar Priyansh <[email protected]>2019-06-03 05:45:20 +0530
commit5f92a5f8ca47554f22ef1ad44de3cbffc6793130 (patch)
treeac630fb45b57c20a0fe269be3eb59c63d6b007a0 /shared
parent6b0736a3e456d1eb1ba3c565a67ad0e09dabe953 (diff)
downloadfirebase-ecommerce-5f92a5f8ca47554f22ef1ad44de3cbffc6793130.tar.xz
firebase-ecommerce-5f92a5f8ca47554f22ef1ad44de3cbffc6793130.zip
Fixed price display
Diffstat (limited to 'shared')
-rw-r--r--shared/Dashboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/Dashboard.js b/shared/Dashboard.js
index 5fb42a0..34ab101 100644
--- a/shared/Dashboard.js
+++ b/shared/Dashboard.js
@@ -46,7 +46,7 @@ $(document).ready(function(){
for(i=0; i< Object.keys(result[productid].productDescription).length; i++) {
str += ('<li>' + result[productid].productDescription[i] + '</li>');
}
- $('#loader').append('<div class="productDetail"><div class="picture" style="background-image:url(\''+result[productid].ProductImageURL+'\');"></div><div class="content"><h1>'+result[productid].productName+'</h1><ul>'+str+'</ul><h3>$17.99</h3><button>Add to Cart</button></div></div>');
+ $('#loader').append('<div class="productDetail"><div class="picture" style="background-image:url(\''+result[productid].ProductImageURL+'\');"></div><div class="content"><h1>'+result[productid].productName+'</h1><ul>'+str+'</ul><h3>$'+result[productid].productPrice+'</h3><button>Add to Cart</button></div></div>');
})
}
function showErrorDiv() {