1
0
mirror of https://github.com/flarum/core.git synced 2025-02-25 11:43:19 +01:00

Make sure user cards disappear properly on old browsers

closes flarum/core#222
This commit is contained in:
Toby Zerner 2015-08-13 13:04:24 +09:30
parent 58223b8a23
commit 011701e483

View File

@ -92,7 +92,7 @@ export default class PostUser extends Component {
*/
hideCard() {
this.$('.UserCard').removeClass('in')
.one('transitionend', () => {
.one('transitionend webkitTransitionEnd oTransitionEnd', () => {
this.cardVisible = false;
m.redraw();
});