Diff for /loncom/interface/loncommon.pm between versions 1.1422 and 1.1423

version 1.1422, 2023/11/26 20:47:16 version 1.1423, 2023/11/27 23:24:05
Line 2501  sub iframe_wrapper_resizejs { Line 2501  sub iframe_wrapper_resizejs {
             if (\$('div.LC_menus_content:first').length) {              if (\$('div.LC_menus_content:first').length) {
                 if (\$('div.LC_menus_content:first').hasClass ("shown")) {                  if (\$('div.LC_menus_content:first').hasClass ("shown")) {
                     header = \$('div.LC_menus_content:first');                      header = \$('div.LC_menus_content:first');
                     offset = 9;                      offset = 12;
                 }                  }
             } else if (\$('div.LC_head_subbox:first').length) {              } else if (\$('div.LC_head_subbox:first').length) {
                 header = \$('div.LC_head_subbox:first');                  header = \$('div.LC_head_subbox:first');
Line 6887  sub bodytag { Line 6887  sub bodytag {
         $bodytag .= Apache::lonhtmlcommon::scripttag(          $bodytag .= Apache::lonhtmlcommon::scripttag(
             Apache::lonmenu::utilityfunctions($httphost), 'start');              Apache::lonmenu::utilityfunctions($httphost), 'start');
   
         if ($args->{'collapsible_header'}) {          if ($args->{'collapsible_header'} ne '') {
             my $alttext = &mt('menu state: collapsed');              my $alttext = &mt('menu state: collapsed');
             my $tooltip = &mt('display standard menus');              my $tooltip = &mt('display standard menus');
             $bodytag .= <<"END";              $bodytag .= <<"END";
Line 6960  END Line 6960  END
             $bodytag .= '<hr style="clear:both" />';              $bodytag .= '<hr style="clear:both" />';
             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end');               $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end'); 
         }          }
         if ($args->{'collapsible_header'}) {          if ($args->{'collapsible_header'} ne '') {
             $bodytag .= '<div id="LC_collapsible_separator"></div>'.              $bodytag .= $args->{'collapsible_header'}.
                           '<div id="LC_collapsible_separator"></div>'.
                         '</div></div>';                          '</div></div>';
         }          }
         return $bodytag;          return $bodytag;

Removed from v.1.1422  
changed lines
  Added in v.1.1423


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