summaryrefslogtreecommitdiff
path: root/kartik/typescript/mainloader.js
blob: 14fcb9f3e4fafb51b8437f468222bc11d704dce4 (plain)
1
2
3
4
5
6
7
8
9
10
if (location.hash === "#ready") {
    files = require('@electron/remote').getCurrentWindow().modsfiles;
    global.HTML = window;

    for (file of files) {
        var script = document.createElement('script');
        script.src = "file://" + file.replaceAll("\\", "/");
        document.head.appendChild(script)
    }
}