使用tinymce压缩器

发布于 2024-08-01 15:35:30 字数 1091 浏览 1 评论 0原文

查看此页面上的代码示例,该示例似乎初始化了两次

http ://wiki.moxiecode.com/index.php/TinyMCE:Compressor/ASPX

初始化示例

下面的示例将把主题和所有插件打包到一个文件/steam 中。 删除您不需要的东西或将自定义插件添加到下面的设置中。 请记住,tinyMCE_GZ.init 调用必须放置在它自己的脚本标记中。

<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce_gzip.js">       </script>
<script type="text/javascript">
tinyMCE_GZ.init({
plugins : 'style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras',
themes : 'simple,advanced',
languages : 'en',
disk_cache : true,
debug : false
});
</script>
<script type="text/javascript">
tinyMCE.init({
.. your normal init ..
});
</script>

您必须调用tinyMCE.init 和tinyMCE_GZ.init 是否正确? 这看起来很奇怪。

我问这个问题是因为当我删除tinyMCE.init时它似乎不起作用,但我想确保我不会违背目的并加载优化版本和非优化版本。tiny

如果是这种情况,应该init 调用是否相同?

reviewing the code example on this page, it seem like the example is initializing both twice

http://wiki.moxiecode.com/index.php/TinyMCE:Compressor/ASPX

Example of initialization

The example below will pack both themes and all plugins into one file/steam. Remove the things you don't need or add you custom plugins to the settings below. Remember that the tinyMCE_GZ.init call must be placed in it's own script tag.

<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce_gzip.js">       </script>
<script type="text/javascript">
tinyMCE_GZ.init({
plugins : 'style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras',
themes : 'simple,advanced',
languages : 'en',
disk_cache : true,
debug : false
});
</script>
<script type="text/javascript">
tinyMCE.init({
.. your normal init ..
});
</script>

is it correct that you have to call tinyMCE.init AND tinyMCE_GZ.init ? this seems odd.

i ask this question because when i remove the tinyMCE.init it doesn't seem to work but i want to ensure i am not defeating the purpose and loading both the optimized version and the non optimized version.tiny

if this is the case, should the init calls be identical?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-08-08 15:35:30

您必须致电正确吗?
tinyMCE.init 和tinyMCE_GZ.init ?
这看起来很奇怪。

是的,你必须这样做,因为tinyMCE.init初始化了tinymeditor,而tinyMCE_GZ.init用于其他用途(gzip)。

is it correct that you have to call
tinyMCE.init AND tinyMCE_GZ.init ?
this seems odd.

Yes, you have to, cause tinyMCE.init initialized the tinymeditor and tinyMCE_GZ.init is used for something else (gzip).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文