无法看到 TinyMCE 插件文件中的更改
我正在尝试对tinyMCE 的插件文件进行一些更改。
例如,我希望“从单词粘贴”对话框更大。 我尝试更改粘贴文件夹中 editor_plugin.js
文件中的 paste_dialog_width
和 paste_dialog_height
变量。
但无论我做什么,ctrl+F5、shift+F5,清除所有 cookie、会话等所有内容,看起来更改都没有加载。
或者我更改了错误的文件?
我还制作了一个自定义插件。我将图标名称从 example.gif 更改为 addmodule.gif ,并在 editor_plugin.js 中进行了更改。但浏览器仍在搜索 example.gif
文件......
非常欢迎一些指示或提示:)
哦,我使用 tinyMCE 的压缩 jquery 版本
I'm trying to make some changes in the plugin files for tinyMCE.
For example I want the 'paste from word' dialog to be larger.
I tried changing the paste_dialog_width
and paste_dialog_height
variables in the editor_plugin.js
file from the paste folder.
But whatever I do, ctrl+F5, shift+F5, clearing all my cookies, sessions, everything, it looks like the changes aren't loaded.
Or am I changing the wrong file?
I also made an custom plugin. I changed the icon name from example.gif
to addmodule.gif
and changed this in the editor_plugin.js
. But still the browser is searching for an example.gif
file....
Some directions or tips are very welcome :)
Ow, and I use the compressed jquery version of tinyMCE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。因为我使用压缩版本,所以每次加载编辑器时,tinyeMCE 都会创建一个 .zip 文件(并且该 zip 文件不存在),以便更快地加载编辑器。它们保存了旧的 editor_plugin.js 文件,因此没有加载我的更改。
删除 zip 文件(位于tinyMCE 主文件夹中)并刷新页面即可解决问题!
I figured it out. Because I use the compressed version, tinyeMCE creates a .zip file everytime the editor loads (and the zip file doesn't exists) for faster loading of the editor. These held the old editor_plugin.js files and therefore didn't load my changes.
Removing the zip file (in the tinyMCE main folder) and refreshing the page will do the trick!