Author
{{ podcastAuthor }}
@@ -129,14 +129,14 @@
Chapters
{{ numChapters }} chapters
-
+
{{ allMetadata ? 'less' : 'more' }}
{{ allMetadata ? 'expand_less' : 'expand_more' }}
-
{{ description }}
+
{{ description }}
@@ -189,7 +189,6 @@ export default {
},
data() {
return {
- allMetadata: false,
resettingProgress: false,
isProcessingReadUpdate: false,
showSelectLocalFolder: false,
@@ -198,10 +197,14 @@ export default {
showFullscreenCover: false,
coverRgb: 'rgb(55, 56, 56)',
coverBgIsLight: false,
- windowWidth: 0
+ windowWidth: 0,
+ hideMetadata: true
}
},
computed: {
+ allMetadata() {
+ return this.isPodcast || !this.hideMetadata
+ },
isIos() {
return this.$platform === 'ios'
},
@@ -722,7 +725,7 @@ export default {
this.windowWidth = window.innerWidth
},
toggleMetadata() {
- this.allMetadata = !this.allMetadata
+ this.hideMetadata = !this.hideMetadata
}
},
mounted() {