Remove defunct selectInspectionType from water report

No longer used
This commit is contained in:
Eli Ribble 2026-02-06 15:43:58 +00:00
parent a82509bebb
commit e17dc142a5
No known key found for this signature in database

View file

@ -35,22 +35,6 @@ async function handleMarkerDrag(lngLat) {
addressInput.SetValue(response.features[0]);
}
}
function selectInspectionType(type) {
// Remove selected class from both cards
document.getElementById('propertyInspection').classList.remove('selected');
document.getElementById('neighborhoodInspection').classList.remove('selected');
// Add selected class to chosen card
if (type === 'property') {
document.getElementById('propertyInspection').classList.add('selected');
document.getElementById('inspectionTypeProperty').checked = true;
document.getElementById('schedulingSection').style.display = 'block';
} else {
document.getElementById('neighborhoodInspection').classList.add('selected');
document.getElementById('inspectionTypeNeighborhood').checked = true;
document.getElementById('schedulingSection').style.display = 'none';
}
}
function setLocationInputs(location) {
let country = document.getElementById('address-country');
let latitude = document.getElementById('latitude');