- Added admin panel - Added user creation form - Now connects to SQL - Added option for DB (re)initialization - Capable of writing user form to SQL
6 lines
265 B
JavaScript
6 lines
265 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';
|
|
} |