Event onDestroy is currently not fired in legacy browsers, such as IE9 and IE10, because the library uses MutationObserver to watch for elements removal from DOM, and those browsers do not support it.
A work-around is needed to add support for onDestroy in legacy browsers.
Without it, if you are allocating some resources inside controllers that need to be explicitly released, they may cause memory leaks in IE9 + IE10 browsers.
Event
onDestroy
is currently not fired in legacy browsers, such asIE9
andIE10
, because the library usesMutationObserver
to watch for elements removal from DOM, and those browsers do not support it.A work-around is needed to add support for
onDestroy
in legacy browsers.Without it, if you are allocating some resources inside controllers that need to be explicitly released, they may cause memory leaks in IE9 + IE10 browsers.