I'm new in CKEditor area, and I'm trying to use the guide: Build
I'm using the build-config.js template and look something like:
var CKBUILDER_CONFIG = { // Skin name. skin: '...', // Files to be ignored. ignore: [ ... ], // Plugins to be included. plugins: { ... } };
This is working just fine(ofcourse with my values), I have more that one skin, it is possible to create a release version with more that one skin? Somethinh like this? In the build-config.js:
skins: 'kama, another_Skin',
Or its not supported?
Thanks
This will not work:
This will not work:
In build-config.js you may specify only one skin. This will be the default skin used in CKEditor and for performance the skin.js file provided by this skin will be merged into ckeditor.js.
Note that even with a single skin specified in build-config.js, you may create a single CKEditor build with all the other skins and plugins that were not listed in build-config.js, but that can be later enabled on demand through config.skin and config.extraPlugins. They will be copied into "skins" and "plugins" folders respectively.
In order to do this, make sure that -s or --skip-omitted-in-build-config flag is not set.
In ckeditor-dev repository build.sh does not have this flag enabled by default. In ckeditor-presets you need to add the "all" suffix at the end, e.g.:
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+