1.2 KiB
1.2 KiB
layout, title, title_nav, description, keywords
| layout | title | title_nav | description | keywords |
|---|---|---|---|---|
| default | 3.x Compatibility Plugin | 3.x Compatibility | Run old plugins on version 4. | compat3x utils tiny_mce_popup editor_plugin |
This plugin makes possible to run majority of old 3.x plugins on the latest TinyMCE, without any modification. However you need to take a few steps to enable it:
Installation Instructions
- Download TinyMCE development package.
- Copy
compat3xplugin to your site. - Copy
utilsandtiny_mce_popup.jsto the same directory, where yourtinymce.min.jsresides. - Load
compat3xafter TinyMCE core. - (Optional) If you rename
editor_plugin.jsfile toplugin.min.jsthen you will be able to load your old plugin as the regular one.
Type: String
Example of loading the compat3x before tinymce.init:
<script src="/tinymce/tinymce.min.js"></script>
<script src="/tinymce/plugins/compat3x/plugin.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: "textarea", // change this value according to your HTML
external_plugins: {
"myoldplugin": "/tinymce/plugins/myoldplugin/editor_plugin.js"
}
});
</script>