UI spring cleaning: include jquery in all pages, animate customer edit service addres...
authorIvan Kohler <ivan@freeside.biz>
Tue, 16 Jun 2015 23:49:27 +0000 (16:49 -0700)
committerIvan Kohler <ivan@freeside.biz>
Tue, 16 Jun 2015 23:49:27 +0000 (16:49 -0700)
httemplate/edit/cust_main.cgi
httemplate/elements/header-popup.html
httemplate/elements/header.html

index f0de6e1..effe84b 100755 (executable)
@@ -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,
   </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, &>
index 01a7ba8..dc60ae6 100644 (file)
@@ -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 %>>
index fd8a03d..55b4fca 100644 (file)
@@ -42,6 +42,7 @@ Example:
               ) |n
     %>
 
+    <SCRIPT SRC="<% $p %>elements/jquery.js"></SCRIPT>
     <% include('init_overlib.html') |n %>
     <% include('rs_init_object.html') |n %>