Modificare il file:
\FckEditor\plugins\enlargeWin\fckplugin.js
var FCKenlargeWinCommand = function() { this.Name = 'enlargeWin'; } FCKenlargeWinCommand.prototype.Execute = function() { frameName = FCK.Name + "___Frame" var frame = window.parent.document.getElementById(frameName) var h = frame.height h = parseInt(h.replace(/px/gi,"")) + 200 frame.height = h frame.style.height = h + "px" } FCKenlargeWinCommand.prototype.GetState = function() { return FCK_TRISTATE_OFF; } FCKCommands.RegisterCommand( 'enlargeWin', new FCKenlargeWinCommand()); var oenlargeWinItem = new FCKToolbarButton( 'enlargeWin', "" ) ; oenlargeWinItem.IconPath = FCKConfig.PluginsPath + 'enlargeWin/enlargeWin.gif' ; oenlargeWinItem.Tooltip = FCKLang.enlargeWinTooltip FCKToolbarItems.RegisterItem( 'enlargeWin', oenlargeWinItem ) ;
[
Íàçàä
]