wip
This commit is contained in:
parent
07efc8e150
commit
1a6a72591f
30 changed files with 54 additions and 67 deletions
|
|
@ -132,7 +132,7 @@
|
|||
});
|
||||
|
||||
this.trigger('closed');
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
};
|
||||
</script>
|
||||
</mk-contextmenu>
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@
|
|||
opacity: 0,
|
||||
duration: 300,
|
||||
easing: 'linear',
|
||||
complete: () => this.unmount()
|
||||
complete: () => this.$destroy()
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@
|
|||
scale: 0.8,
|
||||
duration: 300,
|
||||
easing: [ 0.5, -0.5, 1, 0.5 ],
|
||||
complete: () => this.unmount()
|
||||
complete: () => this.$destroy()
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
show_donation: false
|
||||
});
|
||||
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
};
|
||||
</script>
|
||||
</mk-donation>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
this.on('mount', () => {
|
||||
this.$refs.ctx.on('closed', () => {
|
||||
this.trigger('closed');
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
|
||||
this.api('drive').then(info => {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
this.on('mount', () => {
|
||||
this.$refs.ctx.on('closed', () => {
|
||||
this.trigger('closed');
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
this.$refs.ctx.on('closed', () => {
|
||||
this.trigger('closed');
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@
|
|||
};
|
||||
|
||||
this.close = () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
};
|
||||
</script>
|
||||
</mk-following-setuper>
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@
|
|||
opacity: 0,
|
||||
duration: 100,
|
||||
easing: 'linear',
|
||||
complete: () => this.unmount()
|
||||
complete: () => this.$destroy()
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@
|
|||
});
|
||||
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<script>
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
|
||||
this.$refs.window.refs.index.on('navigate-user', user => {
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
this.$refs.window.refs.form.focus();
|
||||
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
|
||||
this.$refs.window.refs.form.on('post', () => {
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
document.addEventListener('keydown', this.onDocumentKeydown);
|
||||
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@
|
|||
});
|
||||
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@
|
|||
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
this.close = e => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
};
|
||||
</script>
|
||||
</mk-set-avatar-suggestion>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
this.close = e => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
};
|
||||
</script>
|
||||
</mk-set-banner-suggestion>
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<script>
|
||||
this.on('mount', () => {
|
||||
this.$refs.window.on('closed', () => {
|
||||
this.unmount();
|
||||
this.$destroy();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -888,7 +888,7 @@
|
|||
translateY: -64,
|
||||
duration: 500,
|
||||
easing: 'easeInElastic',
|
||||
complete: () => this.unmount()
|
||||
complete: () => this.$destroy()
|
||||
});
|
||||
}, 6000);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@
|
|||
'margin-top': '-8px',
|
||||
duration: 200,
|
||||
easing: 'easeOutQuad',
|
||||
complete: () => this.unmount()
|
||||
complete: () => this.$destroy()
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue