Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-06-19 11:29:43 +0300
committerJoas Schilling <coding@schilljs.com>2020-08-20 21:19:26 +0300
commitc978fc1d3b95ca7e7e7c0b4e7ca79168fe84229f (patch)
tree56cb259fbff04f21feb0c64f16611d24d38301bc /src/mixins
parent34a95c2a5a7e5fd893a9e71a912cf98504c1a9a0 (diff)
Deselect local video upon disabling it
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src/mixins')
-rw-r--r--src/mixins/video.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixins/video.js b/src/mixins/video.js
index 29ba18d62..92ce6578e 100644
--- a/src/mixins/video.js
+++ b/src/mixins/video.js
@@ -54,12 +54,12 @@ const video = {
methods: {
showShadow() {
- if (this.isSelectable) {
+ if (this.isSelectable || this.mouseover) {
this.mouseover = true
}
},
hideShadow() {
- if (this.isSelectable) {
+ if (this.isSelectable || this.mouseover) {
this.mouseover = false
}
},