Код IT Загрузка примера кода…

JavaScript main.js
class UserProfile {
    constructor() {
        this.onResize = () => this.recalculateLayout();
        window.addEventListener('resize', this.onResize);
    }

    destroy() {
        // Забыли удалить обработчик!
        // window.removeEventListener('resize', this.onResize);
    }
}
class UserProfile {
    constructor() {
        this.onResize = () => this.recalculateLayout();
        window.addEventListener('resize', this.onResize);
    }

    destroy() {
        // Забыли удалить обработчик!
        // window.removeEventListener('resize', this.onResize);
    }
}