diff --git a/application/views/mobile_first/ah-lantern-form-info-page.php b/application/views/mobile_first/ah-lantern-form-info-page.php index ba9d0182..a47caf3a 100644 --- a/application/views/mobile_first/ah-lantern-form-info-page.php +++ b/application/views/mobile_first/ah-lantern-form-info-page.php @@ -692,7 +692,7 @@ var adultNumberValue = parseInt(adultNumberNode.value); var ticketPrice = 159; totalPriceHidden.value = ticketPrice * adultNumberValue; - totalPriceText.innerText = '$'+totalPrice; + totalPriceText.innerText = '$'+ticketPrice; for (var i = 0; i < ticketTypeList.length; i++) { var ticketTypeNode = ticketTypeList[i]; ticketTypeNode.addEventListener('click', function(event) { diff --git a/application/views/mobile_first/ah-lantern-form.php b/application/views/mobile_first/ah-lantern-form.php index a2f2cd19..74cbec68 100644 --- a/application/views/mobile_first/ah-lantern-form.php +++ b/application/views/mobile_first/ah-lantern-form.php @@ -689,7 +689,7 @@ var adultNumberValue = parseInt(adultNumberNode.value); var ticketPrice = 159; totalPriceHidden.value = ticketPrice * adultNumberValue; - totalPriceText.innerText = '$'+totalPrice; + totalPriceText.innerText = '$'+ticketPrice; for (var i = 0; i < ticketTypeList.length; i++) { var ticketTypeNode = ticketTypeList[i]; ticketTypeNode.addEventListener('click', function(event) {