Hi,
I wrote a editor plugin for out Confluence 5.8.15 production envionment, which now encounters a problem:
The Javascript only works if a page is edited but not if a page is created. I tried context <context>fullpage-editor</context> and <context>editor</context>, both have the same issue.
AJS.toInit(function(){
AJS.Editor.Adapter.addTinyMcePluginInit(function(settings) {
settings.paste_preprocess = function(plugin, args) {
...
Hi @Dirk Brutscher, you might need to initialize your plugin with
AJS.Rte.BootstrapManager.addTinyMcePluginInit
instead.
However, if you want to be forward compatible and are developing for a later version, this tutorial might help you out.
https://developer.atlassian.com/server/confluence/enabling-tinymce-plugins
Hi,
I always checked the AJS.Rte... version, same problem.
But I think, I found a solution for my problem: https://developer.atlassian.com/server/confluence/extending-autoconvert/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmmm, "https://developer.atlassian.com/server/confluence/enabling-tinymce-plugins" works in our 5.x production environment but does not longer work in the Confluence 6.10.0 :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.