我已经使用javascript实现了我自己的CKEditor版本,在UiDevice device = UiDevice.getInstance(getInstrumentation());
device.setOrientationLeft();
device.setOrientationNatural();
device.setOrientationRight();
的帮助下修改了默认的CKEditor。以下是我编辑的版本:CKEditor.
现在,我只想将默认皮肤更改为 Word2013皮肤。我已经下载了关于皮肤的zip文件,并将其放在皮肤目录中。我改变了CKEDITOR.replace(editor1,....)
的代码:
CKEDITOR.replace
我在CKEditor文档可用后执行了此过程。此外,我使用了<script>
CKEDITOR.replace('editor1', {
fullPage: true,
extraPlugins: 'docprops,preview' ,
//extraPlugins: 'pagebreak',
allowedContent: true,
skin: 'word2013, /skins/word2013/', // **Here I added the skin**
});
</script>
,因此默认CKEDITOR.replace
中的皮肤编辑代码不适用于此处。
我已经相应地遵循了官方的CKEditor文件。但是,它无论如何都不起作用。在这方面有人可以帮助我吗?