File size: 319 Bytes
8d57073
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export class CommonsLoader {
    constructor() {}
    load() {
        load_live_js();
    }
}

function load_live_js() {
    if (window.location.protocol !== "https:") {
        var script = document.createElement("script");
        script.src = "./commons/live.js";
        document.head.appendChild(script);
    }
}