summaryrefslogtreecommitdiff
path: root/searx/static/themes/oscar/js/searx_src/infobox.js
blob: 0c80bf37bc4224d75f93f393a5fc2abe1037fefb (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
    // Hide infobox toggle if shrunk size already fits all content.
    $('.infobox').each(function() {
        var infobox_body = $(this).find('.infobox_body');
        var total_height = infobox_body.prop('scrollHeight') + infobox_body.find('img.infobox_part').height();
        var max_height = infobox_body.css('max-height').replace('px', '');
        if (total_height <= max_height) {
            $(this).find('.infobox_toggle').hide();
        }
    });
});