Skip to content

Commit

Permalink
Update inspectionview.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 30, 2024
1 parent c94b0b9 commit 814d6ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion application/views/inspectionview.php
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,15 @@


});

$('.emailsend').on('click', function (e) {
e.preventDefault();
href = $(this).attr('href');
return bootbox.confirm('Η έκθεση θα αποσταλεί με email στη διεύθυνση <?= $inspection->email_client ?>. Συμφωνείτε;', function(result) {
if (result) {
window.location = href
}
});
});

function checkifexists(fld, len){

Expand Down

0 comments on commit 814d6ed

Please sign in to comment.