1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 07:57:46 +02:00

Remove unrelated change

This commit is contained in:
Franz Liedke
2020-09-18 21:04:41 +02:00
parent 5c2a233b74
commit db8755d5d9

View File

@@ -374,10 +374,6 @@ export default class PostStream extends Component {
* @param {jQuery} $item
*/
flashItem($item) {
$item.addClass('flash').on('animationend webkitAnimationEnd', () => {
if (event.animationName === 'fadeIn') {
$item.removeClass('flash');
}
});
$item.addClass('flash').one('animationend webkitAnimationEnd', () => $item.removeClass('flash'));
}
}