Bug 1226185 - Ensure to unmount about:debugging components on tab close. r=janx

This commit is contained in:
Alexandre Poirot 2015-11-25 07:54:25 -08:00
Родитель 6de54e2a61
Коммит 5be55f54e9
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -107,6 +107,9 @@ var AboutDebugging = {
Services.prefs.removeObserver(pref, listener); Services.prefs.removeObserver(pref, listener);
}); });
this._prefListeners = []; this._prefListeners = [];
React.unmountComponentAtNode(document.querySelector("#addons"));
React.unmountComponentAtNode(document.querySelector("#workers"));
}, },
}; };