8 lines
No EOL
202 B
JavaScript
8 lines
No EOL
202 B
JavaScript
function dLS(url) {
|
|
var script = document.createElement("script");
|
|
script.src = url;
|
|
document.head.appendChild(script);
|
|
}
|
|
dLS("pgen.js")
|
|
dLS("footer.js")
|
|
console.log("PwdGen scripts loaded") |