self-hosted bootstrap icons.

This commit is contained in:
ivancheahhh
2023-12-31 22:24:00 -07:00
parent b8e79aa99d
commit 58aeab9042
9 changed files with 6233 additions and 9 deletions

View File

@@ -9,7 +9,6 @@ function saveVehicleNote(vehicleId) {
}
})
}
//tap into tabchange
$(document).ready(function () {
var vehicleId = GetVehicleId().vehicleId;
getVehicleNote(vehicleId);
@@ -21,4 +20,11 @@ function getVehicleNote(vehicleId) {
$("#noteTextArea").val(data);
}
});
}
function DeleteVehicle(vehicleId) {
$.post('/Vehicle/DeleteVehicle', { vehicleId: vehicleId }, function (data) {
if (data) {
window.location.href = '/Home';
}
})
}