github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/themes/shadow/public/misc.js (about) 1 (() => { 2 addInitHook("end_init", () => { 3 // TODO: Run this when the image is loaded rather than when the document is ready? 4 $(".topic_list img").each(function(){ 5 let aspectRatio = this.naturalHeight / this.naturalWidth; 6 log("aspectRatio",aspectRatio); 7 log("height",this.naturalHeight); 8 log("width",this.naturalWidth); 9 10 $(this).css({ height: aspectRatio * this.width }); 11 }); 12 }); 13 })()