Diff for /loncom/interface/courseclassifier.pm between versions 1.29 and 1.31

version 1.29, 2023/03/15 14:37:12 version 1.31, 2025/02/24 23:41:39
Line 403  function toggleSecVis() { Line 403  function toggleSecVis() {
         showlist = 'inline';          showlist = 'inline';
         showbox = 'none';          showbox = 'none';
     }      }
     alert("crscode is ||"+crscode+"|| and currcode is ||"+currcode+"|| and showlist is ||"+showlist+"|| and showbox is ||"+showbox+"||");  
     if (document.getElementById('LC_helpdesk_sectionlist')) {      if (document.getElementById('LC_helpdesk_sectionlist')) {
         document.getElementById('LC_helpdesk_sectionlist').style.display = showlist;          document.getElementById('LC_helpdesk_sectionlist').style.display = showlist;
     }      }
     if (document.getElementById('LC_helpdesk_section')) {      if (document.getElementById('LC_helpdesk_section')) {
         document.getElementById('LC_helpdesk_section').style.display = showbox;          document.getElementById('LC_helpdesk_section').style.display = showbox;
     }      }
       if (document.getElementById('section')) {
           document.getElementById('section').id = 'wasinuse';
       }
       if (document.getElementById('notinuse') {
           document.getElementById('notinuse').id = 'section';
       }
       if (document.getElementById('wasinuse') {
           document.getElementById('wasinuse').id = 'notinuse';
       }
     return;      return;
 }  }
   

Removed from v.1.29  
changed lines
  Added in v.1.31


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>