@afeefa/vue-app 0.0.155 → 0.0.156
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.156
|
package/package.json
CHANGED
@@ -33,6 +33,7 @@ import { getZIndex } from 'vuetify/lib/util/helpers'
|
|
33
33
|
export default class FlyingContextContainer extends Vue {
|
34
34
|
visible = false
|
35
35
|
oldOverflowY = null
|
36
|
+
isClosing = false
|
36
37
|
|
37
38
|
mounted () {
|
38
39
|
const mutationWatcher = new MutationObserver(this.domChanged)
|
@@ -59,9 +60,8 @@ export default class FlyingContextContainer extends Vue {
|
|
59
60
|
return 0
|
60
61
|
}
|
61
62
|
|
62
|
-
|
63
63
|
sizeChanged () {
|
64
|
-
if (this.visible) {
|
64
|
+
if (this.visible && !this.isClosing) { // do not set size if it is already closing
|
65
65
|
this.$nextTick(() => {
|
66
66
|
const scrollbarWidth = this.getScrollbarWidth()
|
67
67
|
const el = document.documentElement
|
@@ -91,11 +91,13 @@ export default class FlyingContextContainer extends Vue {
|
|
91
91
|
el.style.overflowY = this.oldOverflowY
|
92
92
|
el.style.marginRight = 0
|
93
93
|
}
|
94
|
+
this.isClosing = false
|
94
95
|
}
|
95
96
|
|
96
97
|
hide () {
|
97
98
|
if (this.visible) {
|
98
99
|
this.$el.style.left = '101vw'
|
100
|
+
this.isClosing = true
|
99
101
|
setTimeout(() => { // fade in then hide contents
|
100
102
|
this.$events.dispatch(new FlyingContextEvent(FlyingContextEvent.HIDE_ALL))
|
101
103
|
}, 200)
|