CKEDITOR: Multiple skins on a single page

旧时模样 提交于 2019-12-11 06:58:20

问题


I am doing so:

CKEDITOR.replace('entry-short_text',{
    skin: 'Moono_blue,/ckeditor/Moono_blue/',
});
CKEDITOR.replace('entry-full_text',{
    skin: 'office2013,/ckeditor/office2013/',
}); 

All elements of the set only one skin, which is listed last (ie office2013). Why is that?


回答1:


CKEditor 4 only allows one skin per page. The ability to load multiple skins on the same page was removed when they redesigned for v. 4.



来源:https://stackoverflow.com/questions/30481246/ckeditor-multiple-skins-on-a-single-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!