personal.js 356 B

123456789101112131415161718
  1. $(document).ready(function()
  2. {
  3. /* expand active tree. */
  4. $('.tree li.active .hitarea').click();
  5. fixHeight();
  6. });
  7. function fixHeight()
  8. {
  9. var maxHeight = 0;
  10. $('.main .row .col-xs-4').each(function()
  11. {
  12. if(maxHeight < $(this).height()) maxHeight = $(this).height();
  13. });
  14. $('.main .row .col-xs-4').height(maxHeight);
  15. }