summaryrefslogtreecommitdiff
path: root/Base/res/html/misc/welcome.js
blob: 9ba3388e1239d8bbb8b0acf04303db9eac7e6fb6 (plain)
1
2
3
4
5
6
document.addEventListener("DOMContentLoaded", function () {
    console.log(
        "Hello from DOMContentLoaded! There should be a message before this from an inline script"
    );
    document.getElementById("ua").innerHTML = navigator.userAgent;
});