[Client] Fix bug

This commit is contained in:
syuilo 2017-03-20 23:18:01 +09:00
parent 053cc6aa22
commit 4d73cd5188
5 changed files with 5 additions and 5 deletions

View file

@ -99,7 +99,7 @@
scale: 0.5, scale: 0.5,
duration: 200, duration: 200,
easing: 'easeInBack', easing: 'easeInBack',
complete: this.unmount complete: () => this.unmount()
}); });
}; };
</script> </script>

View file

@ -127,7 +127,7 @@
scale: 0.8, scale: 0.8,
duration: 300, duration: 300,
easing: [ 0.5, -0.5, 1, 0.5 ], easing: [ 0.5, -0.5, 1, 0.5 ],
complete: this.unmount complete: () => this.unmount()
}); });
}; };

View file

@ -54,7 +54,7 @@
opacity: 0, opacity: 0,
duration: 100, duration: 100,
easing: 'linear', easing: 'linear',
complete: this.unmount complete: () => this.unmount()
}); });
}; };
</script> </script>

View file

@ -38,7 +38,7 @@
top: '-64px', top: '-64px',
duration: 500, duration: 500,
easing: 'easeOutQuad', easing: 'easeOutQuad',
complete: this.unmount complete: () => this.unmount()
}); });
}, 6000); }, 6000);
}); });

View file

@ -142,7 +142,7 @@
'margin-top': '-8px', 'margin-top': '-8px',
duration: 200, duration: 200,
easing: 'easeOutQuad', easing: 'easeOutQuad',
complete: this.unmount complete: () => this.unmount()
}); });
}; };
</script> </script>