13 lines
395 B
JavaScript
13 lines
395 B
JavaScript
(() => {
|
|
addInitHook("end_init", () => {
|
|
// TODO: Run this when the image is loaded rather than when the document is ready?
|
|
$(".topic_list img").each(function(){
|
|
let aspectRatio = this.naturalHeight / this.naturalWidth;
|
|
log("aspectRatio",aspectRatio);
|
|
log("height",this.naturalHeight);
|
|
log("width",this.naturalWidth);
|
|
|
|
$(this).css({ height: aspectRatio * this.width });
|
|
});
|
|
});
|
|
})() |