Web/commissions/closed.js
Ell 0ee1a8e552
All checks were successful
Web/pipeline/head This commit looks good
summmary
2021-05-15 17:13:07 +02:00

15 lines
484 B
JavaScript

$.ajax({
dataType: "text",
url: "closed.txt",
cache: false,
success: function (value) {
if (value !== "true")
return;
$('#closed').html( /*html*/ `
<div class="alert alert-warning" role="alert">
<strong>My commissions are currently closed.</strong>
<br>If you are willing to wait until they reopen, you can still contact me with a summary of your request.
</div>
`);
}
});