Rebuild frontend.

This commit is contained in:
James Cole
2021-07-18 19:23:50 +02:00
parent 704cf26725
commit e959dbc6e0
27 changed files with 332 additions and 100 deletions

View File

@@ -45,5 +45,6 @@ function setupIntro(steps) {
}
function reportIntroFinished() {
console.log('Route for finished intro: ' + routeForFinishedTour);
$.post(routeForFinishedTour, {_token: token});
}

View File

@@ -198,6 +198,7 @@ function updateFormFields() {
// show budget
$('#budget_id_holder').show();
$('#bill_id_holder').show();
// hide piggy bank:
$('#piggy_bank_id_holder').hide();
@@ -214,6 +215,7 @@ function updateFormFields() {
$('#destination_id_holder').show();
$('#budget_id_holder').hide();
$('#bill_id_holder').hide();
$('#piggy_bank_id_holder').hide();
}
@@ -228,6 +230,7 @@ function updateFormFields() {
$('#destination_id_holder').show();
$('#budget_id_holder').hide();
$('#bill_id_holder').hide();
$('#piggy_bank_id_holder').show();
}
}