mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-04 03:17:00 -05:00 
			
		
		
		
	Merge pull request #3492 from mikiher/author-image-ar
Use object-cover for author images unless AR is really high or low
This commit is contained in:
		
						commit
						a6da32430f
					
				@ -65,15 +65,10 @@ export default {
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  methods: {
 | 
					  methods: {
 | 
				
			||||||
    imageLoaded() {
 | 
					    imageLoaded() {
 | 
				
			||||||
      var aspectRatio = 1.25
 | 
					 | 
				
			||||||
      if (this.$refs.wrapper) {
 | 
					 | 
				
			||||||
        aspectRatio = this.$refs.wrapper.clientHeight / this.$refs.wrapper.clientWidth
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      if (this.$refs.img) {
 | 
					      if (this.$refs.img) {
 | 
				
			||||||
        var { naturalWidth, naturalHeight } = this.$refs.img
 | 
					        var { naturalWidth, naturalHeight } = this.$refs.img
 | 
				
			||||||
        var imgAr = naturalHeight / naturalWidth
 | 
					        var imgAr = naturalHeight / naturalWidth
 | 
				
			||||||
        var arDiff = Math.abs(imgAr - aspectRatio)
 | 
					        if (imgAr < 0.5 || imgAr > 2) {
 | 
				
			||||||
        if (arDiff > 0.15) {
 | 
					 | 
				
			||||||
          this.showCoverBg = true
 | 
					          this.showCoverBg = true
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
          this.showCoverBg = false
 | 
					          this.showCoverBg = false
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user