summaryrefslogtreecommitdiff
path: root/graphs/js/foodTruck/static/failedOnload.js
blob: cf4707306bd18e69c2947155a1dac584d5432cf4 (plain)
1
2
3
4
5
6
7
8
9
function scriptFailedLoad(src) {
    const container = document.getElementById("order");
    const errorDiv = document.createElement("div");

    errorDiv.id = "errorscript";
    errorDiv.innerHTML = `
    <p><b>Script '${src.split("/").pop()}' does not exist.</b></p>`;
    container.appendChild(errorDiv);
}