📄 fckplugin.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:
*
* For further information visit:
* http:
*
* "Support Open Source software. What about a donation today?"
*
* File Name: fckplugin.js
* Plugin: automatically resizes the editor until a configurable maximun
* height (FCKConfig.AutoGrowMax), based on its contents.
*
* File Authors:
* Frederico Caldeira Knabben (fredck@fckeditor.net)
*/
var FCKAutoGrow_Min = window.frameElement.offsetHeight ;
function FCKAutoGrow_Check()
{ var oInnerDoc = FCK.EditorDocument ;
var iFrameHeight, iInnerHeight ;
if ( FCKBrowserInfo.IsIE )
{ iFrameHeight = FCK.EditorWindow.frameElement.offsetHeight ; iInnerHeight = oInnerDoc.body.scrollHeight ; }
else
{ iFrameHeight = FCK.EditorWindow.innerHeight ; iInnerHeight = oInnerDoc.body.offsetHeight ; }
var iDiff = iInnerHeight - iFrameHeight ;
if ( iDiff != 0 )
{ var iMainFrameSize = window.frameElement.offsetHeight ;
if ( iDiff > 0 && iMainFrameSize < FCKConfig.AutoGrowMax )
{ iMainFrameSize += iDiff ; if ( iMainFrameSize > FCKConfig.AutoGrowMax )
iMainFrameSize = FCKConfig.AutoGrowMax ; }
else if ( iDiff < 0 && iMainFrameSize > FCKAutoGrow_Min )
{ iMainFrameSize += iDiff ; if ( iMainFrameSize < FCKAutoGrow_Min )
iMainFrameSize = FCKAutoGrow_Min ; }
else
return ;
window.frameElement.height = iMainFrameSize ; }
}
FCK.AttachToOnSelectionChange( FCKAutoGrow_Check ) ;
function FCKAutoGrow_SetListeners()
{ FCK.EditorWindow.attachEvent( 'onscroll', FCKAutoGrow_Check ) ; FCK.EditorDocument.attachEvent( 'onkeyup', FCKAutoGrow_Check ) ; }
if ( FCKBrowserInfo.IsIE )
{ FCK.Events.AttachEvent( 'OnAfterSetHTML', FCKAutoGrow_SetListeners ) ; }
function FCKAutoGrow_CheckEditorStatus( sender, status )
{ if ( status == FCK_STATUS_COMPLETE )
FCKAutoGrow_Check() ; }
FCK.Events.AttachEvent( 'OnStatusChange', FCKAutoGrow_CheckEditorStatus ) ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -