This commit is contained in:
Chris Smith
2019-03-03 20:04:02 -06:00
parent 6c5bf1c2a5
commit b141c3ba98
2 changed files with 204 additions and 0 deletions

View File

@@ -26,6 +26,15 @@ addEventHandler(document, 'DOMContentLoaded', function () {
// Fire update ticket prices on DOM Loaded
updateTicketPricesOnDOM();
addEventHandler(document.getElementById('credit'), 'click', function() {
document.getElementById('checkDetails').style.display = 'none';
document.getElementById('creditDetails').style.display = '';
});
addEventHandler(document.getElementById('check'), 'click', function() {
document.getElementById('checkDetails').style.display = '';
document.getElementById('creditDetails').style.display = 'none';
});
});
function updateTicketPricesOnDOM() {