Theatre mode icon accounts for default theatre mode being ignored when switching between videos (#1632)
This commit is contained in:
parent
48493d12f4
commit
c3105f46e5
|
@ -165,10 +165,6 @@ export default Vue.extend({
|
||||||
return this.$store.getters.getDefaultVideoFormat
|
return this.$store.getters.getDefaultVideoFormat
|
||||||
},
|
},
|
||||||
|
|
||||||
defaultTheatreMode: function () {
|
|
||||||
return this.$store.getters.getDefaultTheatreMode
|
|
||||||
},
|
|
||||||
|
|
||||||
autoplayVideos: function () {
|
autoplayVideos: function () {
|
||||||
return this.$store.getters.getAutoplayVideos
|
return this.$store.getters.getAutoplayVideos
|
||||||
},
|
},
|
||||||
|
@ -982,7 +978,7 @@ export default Vue.extend({
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const theatreModeActive = this.defaultTheatreMode ? ' vjs-icon-theatre-active' : ''
|
const theatreModeActive = this.$parent.useTheatreMode ? ' vjs-icon-theatre-active' : ''
|
||||||
|
|
||||||
const VjsButton = videojs.getComponent('Button')
|
const VjsButton = videojs.getComponent('Button')
|
||||||
const toggleTheatreModeButton = videojs.extend(VjsButton, {
|
const toggleTheatreModeButton = videojs.extend(VjsButton, {
|
||||||
|
|
Loading…
Reference in New Issue