Skip to content

Commit

Permalink
Clear input in return regardless of the outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Sep 19, 2023
1 parent 9d1d273 commit b2e0f8e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions BookingSystem/templates/forms/return.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
$.confirm({
title: 'Gå gjennom utstyret før innlevering!',
content: '<li>Se gjennom vesker/etui - bekreft at alt er på plass<br>' +
'<li>Sjekk minnekort og annet medfølgende tilbehør<br>' +
'<li>Sett eventuelle batterier til lading<br>' +
'<br>' +
'<b>Eventuelle avvik skal registreres.</b>',
'<li>Sjekk minnekort og annet medfølgende tilbehør<br>' +
'<li>Sett eventuelle batterier til lading<br>' +
'<br>' +
'<b>Eventuelle avvik skal registreres.</b>',
type: 'orange',
icon: 'fa fa-exclamation-triangle',
buttons: {
Expand Down Expand Up @@ -43,8 +43,6 @@
$('#active tr').filter(function () {
return $(this).find('td').eq(0).text() === $('#id').val();
}).remove();
// Clear the input field
$('#id').val('');
},
error: function (result) {
iziToast.error({
Expand All @@ -53,6 +51,8 @@
})
}
});
// Clear the input field
$('#id').val('');
});
});
</script>

0 comments on commit b2e0f8e

Please sign in to comment.