TinyMCE: How bind on event after its initialized

前端 未结 5 1521
轮回少年
轮回少年 2021-01-11 14:16

I already searched a lot but by google-fu\'ing don\'t get me any results :(

I have an already initialized tinyMCE editor which initiali

5条回答
  •  逝去的感伤
    2021-01-11 14:59

    Although this post is old now but I think other people will need this answer. I had the same problem and to fix it I did this:

    tinyMCE.init({
            ...
            init_instance_callback : "myCustomInitInstance"
    });
    

    Based on http://www.tinymce.com/wiki.php/Configuration3x:init_instance_callback

提交回复
热议问题