fckiecleanup.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckiecleanup.js
  14.  *  FCKIECleanup Class: a generic class used as a tool to remove IE leaks.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. var FCKIECleanup = function( attachWindow )
  20. {
  21. this.Items = new Array() ;
  22. attachWindow._FCKCleanupObj = this ;
  23. attachWindow.attachEvent( 'onunload', FCKIECleanup_Cleanup ) ;
  24. }
  25. FCKIECleanup.prototype.AddItem = function( dirtyItem, cleanupFunction )
  26. {
  27. this.Items.push( [ dirtyItem, cleanupFunction ] ) ;
  28. }
  29. function FCKIECleanup_Cleanup()
  30. {
  31. var aItems = this._FCKCleanupObj.Items ;
  32. var iLenght = aItems.length ;
  33. for ( var i = 0 ; i < iLenght ; i++ )
  34. {
  35. var oItem = aItems[i] ;
  36. oItem[1].call( oItem[0] ) ;
  37. aItems[i] = null ;
  38. }
  39. this._FCKCleanupObj = null ;
  40. if ( CollectGarbage )
  41. CollectGarbage() ;
  42. }