mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-04 10:14:36 +02:00
Use object-cover for author images unless AR is really high or low.
This commit is contained in:
parent
f38b6636e3
commit
7653e72e88
1 changed files with 1 additions and 2 deletions
|
@ -72,8 +72,7 @@ export default {
|
|||
if (this.$refs.img) {
|
||||
var { naturalWidth, naturalHeight } = this.$refs.img
|
||||
var imgAr = naturalHeight / naturalWidth
|
||||
var arDiff = Math.abs(imgAr - aspectRatio)
|
||||
if (arDiff > 0.15) {
|
||||
if (imgAr < 0.5 || imgAr > 2) {
|
||||
this.showCoverBg = true
|
||||
} else {
|
||||
this.showCoverBg = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue