infobox.js 495 B

1234567891011
  1. $(document).ready(function() {
  2. // Hide infobox toggle if shrunk size already fits all content.
  3. $('.infobox').each(function() {
  4. var infobox_body = $(this).find('.infobox_body');
  5. var total_height = infobox_body.prop('scrollHeight') + infobox_body.find('img.infobox_part').height();
  6. var max_height = infobox_body.css('max-height').replace('px', '');
  7. if (total_height <= max_height) {
  8. $(this).find('.infobox_toggle').hide();
  9. }
  10. });
  11. });