Fix for IP not loading on startup.

This commit is contained in:
Jabba 2021-03-18 16:33:11 +00:00 committed by GitHub
parent ef46596433
commit aef8819f81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -345,3 +345,10 @@ const rsgData = {
...msfvenomCommands
]
}
function onLoad() {
const spans = document.getElementsByTagName('span');
spans[5].innerHTML = document.getElementById("ip").value;
}
setTimeout(onLoad)