summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-06-16 16:49:27 -0700
committerIvan Kohler <ivan@freeside.biz>2015-06-16 16:49:27 -0700
commit925cf9600781e534b4188adb68cc53a9709a6569 (patch)
treea995ee4a5f3c2ef6494aa5e352215bbf61305036
parentd41515dc00cd18948206744dc5ae0a322c423bb9 (diff)
UI spring cleaning: include jquery in all pages, animate customer edit service address hide/unhide
-rwxr-xr-xhttemplate/edit/cust_main.cgi18
-rw-r--r--httemplate/elements/header-popup.html1
-rw-r--r--httemplate/elements/header.html1
3 files changed, 13 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, &>
diff --git a/httemplate/elements/header-popup.html b/httemplate/elements/header-popup.html
index 01a7ba87f..dc60ae67f 100644
--- a/httemplate/elements/header-popup.html
+++ b/httemplate/elements/header-popup.html
@@ -28,6 +28,7 @@ Example:
<META HTTP-Equiv="Cache-Control" Content="no-cache">
<META HTTP-Equiv="Pragma" Content="no-cache">
<META HTTP-Equiv="Expires" Content="0">
+ <SCRIPT SRC="<% $p %>elements/jquery.js"></SCRIPT>
<% $head %>
</HEAD>
<BODY <% $etc %>>
diff --git a/httemplate/elements/header.html b/httemplate/elements/header.html
index fd8a03d99..55b4fca83 100644
--- a/httemplate/elements/header.html
+++ b/httemplate/elements/header.html
@@ -42,6 +42,7 @@ Example:
) |n
%>
+ <SCRIPT SRC="<% $p %>elements/jquery.js"></SCRIPT>
<% include('init_overlib.html') |n %>
<% include('rs_init_object.html') |n %>