@(url: String) | |
@import helper._ | |
@scripts = { | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
var obj = document.getElementById("iframe"); | |
resizeIframe(obj); | |
} | |
function resizeIframe(obj) { | |
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; | |
} | |
</script> | |
} | |
@main("Service", scripts) { | |
<iframe id="iframe" width="100%" height="1200px" src="@url" frameborder="0" > | |
</iframe> | |
} |