diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-06-16 16:49:27 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-06-16 16:49:27 -0700 |
commit | 925cf9600781e534b4188adb68cc53a9709a6569 (patch) | |
tree | a995ee4a5f3c2ef6494aa5e352215bbf61305036 /httemplate/edit/cust_main.cgi | |
parent | d41515dc00cd18948206744dc5ae0a322c423bb9 (diff) |
UI spring cleaning: include jquery in all pages, animate customer edit service address hide/unhide
Diffstat (limited to 'httemplate/edit/cust_main.cgi')
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index f0de6e14a..effe84b96 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -68,8 +68,8 @@ VALUE="Y" <% $has_ship_address ? '' : 'CHECKED' %> ><% mt('same as billing address') |h %> - <DIV CLASS="fsinnerbox"> - <TABLE ID="table_ship_location" WIDTH="100%"> + <DIV ID="div_ship_location"> + <TABLE WIDTH="100%" CLASS="fsinnerbox"> <& cust_main/before_ship_location.html, $cust_main &> <& /elements/location.html, object => $cust_main->ship_location, @@ -95,16 +95,20 @@ </TD> </TR></TABLE> -<SCRIPT> +<SCRIPT TYPE="text/javascript"> + function samechanged(what) { - var t1 = document.getElementById('table_ship_location'); if ( what.checked ) { - t1.style.display = 'none'; + $('#div_ship_location').slideUp(); } else { - t1.style.display = '' + $('#div_ship_location').slideDown(); } } -samechanged(document.getElementById('same')); + +% if ( ! $has_ship_address ) { + $('#div_ship_location').hide(); +% } + </SCRIPT> <& cust_main/contacts_new.html, 'cust_main'=>$cust_main, &> |