diff options
author | mark <mark> | 2010-08-03 03:30:20 +0000 |
---|---|---|
committer | mark <mark> | 2010-08-03 03:30:20 +0000 |
commit | 720cf723d2c8e88760704e2fdc50ebf48e0574f2 (patch) | |
tree | cfd22ecedf5c9db463fe345c193d51e5a88052ac /httemplate/view/cust_main | |
parent | 746eb018918ec4660870c79d0ff907fe0920696a (diff) |
customer view tab for an external info page, RT#8903
Diffstat (limited to 'httemplate/view/cust_main')
-rw-r--r-- | httemplate/view/cust_main/custom.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/custom.html b/httemplate/view/cust_main/custom.html new file mode 100644 index 000000000..8e2e07b75 --- /dev/null +++ b/httemplate/view/cust_main/custom.html @@ -0,0 +1,21 @@ +<IFRAME id="customframe" + src="<% $proxyurl %>" + onload="resizeFrame(this)" + frameborder=0 + marginheight="0px" + marginwidth="0px" + width="100%" + scrolling="no" +> +</IFRAME> +<SCRIPT TYPE="text/javascript"> +function resizeFrame(f) { + f.style.height = f.contentDocument.body.scrollHeight + 'px'; +} +</SCRIPT> +<%init> + +my( $cust_main ) = @_; + +my $proxyurl = $p.'/misc/custom_link_proxy.cgi?custnum='.$cust_main->custnum; +</%init> |