wait for img to load before hiding infobox toggle

This commit is contained in:
Marc Abonce Seguin 2020-09-07 22:27:10 -07:00 committed by Alexandre Flament
parent ab20ca182c
commit 7e82817925
3 changed files with 4 additions and 4 deletions

View File

@ -204,7 +204,7 @@ $(document).ready(function(){
$(a.target).parent().attr("aria-selected", "true");
});
});
;$(document).ready(function() {
;window.addEventListener('load', function() {
// Hide infobox toggle if shrunk size already fits all content.
$('.infobox').each(function() {
var infobox_body = $(this).find('.infobox_body');

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
$(document).ready(function() {
window.addEventListener('load', function() {
// Hide infobox toggle if shrunk size already fits all content.
$('.infobox').each(function() {
var infobox_body = $(this).find('.infobox_body');