Ignore:
Timestamp:
Sep 18, 2010, 11:36:50 AM (14 years ago)
Author:
grum
Message:

error on GallyFunctions::expandMenuEvent
'missing token' message when user try to change theme
+some minor bugs & improvements not referenced
bug:1714, bug:1864

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/gally/gally-default/js/gallyjs-tpp.js

    r6752 r6956  
    354354    if(showtabs=='y')
    355355    {
    356       $("#theTabsContainer").animate({height:options.tabsVisible+"px"}, options.animateDelay);
     356      $("#theTabsContainer").animate({height:options.tabsVisible+"px"}, options.animateDelay).trigger('resize');
    357357    }
    358358    else
     
    360360      $('#theTabs div.tabPanel').addClass("ui-tabs-hide").css("display", "");
    361361      $('#theTabs li').removeClass("ui-tabs-selected");
    362       $("#theTabsContainer").animate({height:options.tabsHidden+"px"}, options.animateDelay);
     362      $("#theTabsContainer").animate({height:options.tabsHidden+"px"}, options.animateDelay).trigger('resize');
    363363    }
    364364  }
     
    367367    if(showtabs=='y')
    368368    {
    369       $("#theTabsContainer").css({height:options.tabsVisible+"px"});
     369      $("#theTabsContainer").css({height:options.tabsVisible+"px"}).trigger('resize');
    370370    }
    371371    else
     
    373373      $('#theTabs div.tabPanel').addClass("ui-tabs-hide").css("display", "");
    374374      $('#theTabs li').removeClass("ui-tabs-selected");
    375       $("#theTabsContainer").css({height:options.tabsHidden+"px"});
     375      $("#theTabsContainer").css({height:options.tabsHidden+"px"}).trigger('resize');
    376376    }
    377377  }
Note: See TracChangeset for help on using the changeset viewer.