why wouldn't we want to hide the whole thing rather than leave a big blank gap?
authorIvan Kohler <ivan@freeside.biz>
Sun, 14 Jun 2015 21:26:19 +0000 (14:26 -0700)
committerIvan Kohler <ivan@freeside.biz>
Sun, 14 Jun 2015 21:26:19 +0000 (14:26 -0700)
httemplate/edit/cust_main.cgi

index 877d1e8..d4129a3 100755 (executable)
 
 <SCRIPT>
 function samechanged(what) {
-%# not display = 'none', because we still want it to take up space
 %#  document.getElementById('table_ship_location').style.visibility = 
-%#    what.checked ? 'hidden' : 'visible';
   var t1 = document.getElementById('table_ship_location');
   if ( what.checked ) {
-    t1.style.visibility = 'hidden';
+    t1.style.display = 'none';
   }
   else {
-    t1.style.visibility = 'visible'
+    t1.style.display = ''
   }
 }
 samechanged(document.getElementById('same'));