views:

44

answers:

1

How do I override a core CKEditor (v3) plugin with my own implementation?

+1  A: 

Two options:

  1. Replace the core plugin's folder in _source/plugins.
  2. Name your plugin something different, load it with config.extraPlugins, and prevent the core plugin from loading with config.removePlugins
Evan Krall