added two apps, and better implementation
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export function createScript(value: string) {
|
||||
var script: HTMLScriptElement = document.createElement("script");
|
||||
script.setAttribute("async", "");
|
||||
script.innerHTML = value;
|
||||
|
||||
document.body.appendChild(script);
|
||||
}
|
||||
Reference in New Issue
Block a user