Moving Files

This commit is contained in:
Kyle
2018-10-13 10:18:13 -07:00
parent 74ae1e163f
commit 88fd6fed52
172 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
function loadScript(scriptName){
var script = document.createElement("script")
script.setAttribute("type","text/javascript")
script.setAttribute("src", scriptName)
if (typeof script != "undefined") {
document.getElementsByTagName("head")[0].appendChild(script)
}
}