annotate ireport_javascript.js @ 6:42076db43d42
draft
Fixed auto resizing plus various other minor bugs
author |
saskia-hiltemann |
date |
Mon, 16 Nov 2015 08:56:22 -0500 |
parents |
a4813532bbc6 |
children |
|
rev |
line source |
4
|
1 function resizeIframe(obj) {
|
|
2 oldheight=obj.style.height
|
|
3 oldwidth=obj.style.width
|
|
4 obj.style.height = obj.contentWindow.document.body.scrollHeight + 4 + 'px';
|
|
5 obj.style.width = obj.contentWindow.document.body.scrollWidth + 4 + 'px';
|
|
6 if(obj.style.height < 50){
|
|
7 obj.style.height=oldheight
|
|
8 }
|
|
9 } |