Ignore:
Timestamp:
Oct 11, 2011, 4:48:20 PM (13 years ago)
Author:
flop25
Message:

compatiblity with stripped 1.5.x

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped_black_bloc/local_head.tpl

    r12268 r12406  
    9696        {/literal} {if $stripped.hideMenu} {literal}
    9797        if (sidemenu == 'showing') {
    98                 jQuery("#subcontent").css({'margin-left' : '20em'});
     98                jQuery("#content_cell").css({'margin-left' : '20em'});
    9999                isdisplayed=true;
    100100        }
    101101        else {
    102                 jQuery("#subcontent").css({'margin-left' : '0'});
     102                jQuery("#content_cell").css({'margin-left' : '0'});
    103103                isdisplayed=false;
    104104        }
    105105        {/literal} {else} {literal}
    106106        if (sidemenu == 'hiding') {
    107                 jQuery("#subcontent").css({'margin-left' : '0'});
     107                jQuery("#content_cell").css({'margin-left' : '0'});
    108108                isdisplayed=false;
    109109        }
    110110        else {
    111                 jQuery("#subcontent").css({'margin-left' : '20em'});
     111                jQuery("#content_cell").css({'margin-left' : '20em'});
    112112                isdisplayed=true;
    113113        }
     
    116116        jQuery("#menuswitcher").click(function(){
    117117                if (jQuery("#menubar").is(":hidden") || isdisplayed==false ) {
    118                         jQuery("#subcontent").css({'margin-left' : '20em'});
     118                        jQuery("#content_cell").css({'margin-left' : '20em'});
    119119                        isdisplayed=true;
    120120                } else {
    121                         jQuery("#subcontent").css({'margin-left' : '0'});
     121                        jQuery("#content_cell").css({'margin-left' : '0'});
    122122                        isdisplayed=false;
    123123                }
Note: See TracChangeset for help on using the changeset viewer.