gosora/themes/tempra_simple/public/misc.js

13 lines
419 B
JavaScript
Raw Normal View History

(() => {
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;
2020-03-09 21:41:17 +00:00
console.log("aspectRatio",aspectRatio);
console.log("height",this.naturalHeight);
console.log("width",this.naturalWidth);
$(this).css({ height: aspectRatio * this.width });
});
});
2020-03-09 21:41:17 +00:00
})()