blob: 077c6913b3863da21c4133926652f8b0aae405ff [file] [log] [blame]
@(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>
}