Reputation: 441
I'm trying to implement most of CKEditor plugins in source only mode. Unfortunately I can't find ways to switch the modes property of the plugin to source mode as well.
One of the plugin that I'd like to allow in source is the text color picker. Here's the source code of the CKEditor color picker;
Notice the modes attribute is set to modes: {wysiwyg:1}
. I'd like to add source:1
into it so it would enable, but how?
Upvotes: 0
Views: 64
Reputation: 22023
It's not going to work at all. This plugin was implemented to work in WYSIWYG mode and it's impossible to enable it in source mode. These are two completely different environments.
Upvotes: 1