diff options
| author | mark <mark> | 2010-08-03 03:30:34 +0000 |
|---|---|---|
| committer | mark <mark> | 2010-08-03 03:30:34 +0000 |
| commit | 124601883f5c26ddc16d0f9d0890614dfd58a91e (patch) | |
| tree | 6099d3232eceea17ab97cbbc6da2c0a64b398770 /httemplate/view/cust_main | |
| parent | 5f38c4055b82da17afabf6f65b0afc951de641fa (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> |
