@afeefa/vue-app 0.0.198 → 0.0.199
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.199
|
package/package.json
CHANGED
@@ -81,10 +81,12 @@ export default class FlyingContext extends Mixins(CancelOnEscMixin) {
|
|
81
81
|
this.$events.dispatch(new FlyingContextEvent(FlyingContextEvent.START_HIDE_CONTEXT))
|
82
82
|
|
83
83
|
setTimeout(() => { // fade in then hide contents
|
84
|
-
this.$el
|
85
|
-
|
86
|
-
|
87
|
-
|
84
|
+
if (this.$el && this.getContent()) { // if left current route, this might not be existing any longer
|
85
|
+
this.$el.appendChild(this.getContent())
|
86
|
+
this.coe_unwatchCancel() // hide context -> do not watch esc any more
|
87
|
+
this.isVisible = false
|
88
|
+
this.$emit('hide')
|
89
|
+
}
|
88
90
|
}, 200)
|
89
91
|
}
|
90
92
|
}
|