这个插件在默认情况下可能运行不正常,必须做一点修改才可以。
打开插件所在文件:/editor/plugins/autogrow/fckplugin.js
找到第65行:
window.frameElement.height=iMainFrameSize ;
将其修改为:
复制代码 代码如下:
if (window.frameElement.style.height) {
window.frameElement.style.height=iMainFrameSize;
}
else {
window.frameElement.height=iMainFrameSize;
}
这样就可以兼容IE和火狐浏览器了。
启用插件:
打开文件:/fckeditor/fckconfig.js
启用这两行:
FCKConfig.Plugins.Add( ‘autogrow’ ) ;
FCKConfig.AutoGrowMax=600 ;
AutoGrowMax是限制最高高度。可以根据需要自行设置。
参考:http://cksource.com/forums/viewtopic.php?f=6&t=10214&p=30094
您可能感兴趣的文章:CKEditor扩展插件:自动排版功能autoformat插件实现方法详解FCKeditor 插件开发 示例(详细版本)ckeditor自定义插件使用方法详解CKEditor 附插入代码的插件添加FCKeditor插件需要注意的地方ckeditor插件开发简单实例fckeditor 插件实例 制作步骤CKEditor中加入syntaxhighlighter代码高亮插件FCKeditor 和 SyntaxHighlighter 代码高亮插件的整合ckeditor一键排版功能实现方法分析
© 版权声明
文章版权归作者所有,未经允许请勿转载。