Taylor Courage 4dd3604d81 THE BIG "I need to commit more" UPDATE!
- Can now create users
- Can now create tournaments
- Has (temporary) link to giveaway
- Removed dev_db_config that was added by mistake (the db pw has been changed!)
- Tons of other little changes
2025-03-02 21:14:28 -05:00

13 lines
386 B
JavaScript

function resizeIframe(obj) {
obj.style.height = "200px";
obj.style.width = "100px";
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
obj.style.width = obj.contentWindow.document.documentElement.scrollWidth + 'px';
}
function getURL(path) {
if (path == undefined) {
path = "";
}
return window.location.href + path;
}