⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fckiecleanup.js

📁 this is my first project with php,
💻 JS
字号:
/*
 * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
 * 
 * Licensed under the terms of the GNU Lesser General Public License:
 * 		http://www.opensource.org/licenses/lgpl-license.php
 * 
 * For further information visit:
 * 		http://www.fckeditor.net/
 * 
 * "Support Open Source software. What about a donation today?"
 * 
 * File Name: fckiecleanup.js
 * 	FCKIECleanup Class: a generic class used as a tool to remove IE leaks.
 * 
 * File Authors:
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
 */


var	FCKIECleanup = function( attachWindow )
{

	this.Items = new Array() ;

	attachWindow._FCKCleanupObj = this ;
	attachWindow.attachEvent( 'onunload', FCKIECleanup_Cleanup ) ;	
}
	
FCKIECleanup.prototype.AddItem = function( dirtyItem, cleanupFunction )
{
	this.Items.push( [ dirtyItem, cleanupFunction ] ) ;
}
	
function FCKIECleanup_Cleanup()
{
	var aItems = this._FCKCleanupObj.Items ;
	var iLenght = aItems.length ;

	for ( var i = 0 ; i < iLenght ; i++ )
	{
		var oItem = aItems[i] ;
		oItem[1].call( oItem[0] ) ;
		aItems[i] = null ;
	}
	
	this._FCKCleanupObj = null ;
	
	if ( CollectGarbage )
		CollectGarbage() ;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -