2011/01/06
IEのattachEventでメモリリークする件で
http://groups.google.com/group/closure-library-discuss/browse_thread/thread/9861a8a49a277b0b
prototype.js、jQuery、uupaa.jsではunload時に自動でdetachEventしてくれるけどClosure Libraryはしてくれないので自分でやる必要がある。
IE6なんかだと結構パフォーマンスにも効いてきます。
if (goog.userAgent.IE) {
goog.events.listen(window, goog.events.EventType.UNLOAD, function() {
goog.events.removeAll();
});
}
- Category(s)
- JavaScript
- The URL to Trackback this entry is:
- http://dev.ariel-networks.com/Members/uchida/ie306eattachevent30e130e230ea30ea30fc30af3059308b4ef6/tbping