(Screenshot added) |
(Errors corrected) |
||
Line 1: | Line 1: | ||
{{#CUSTOMTITLE:How Do I Remove the Elements Path?}} | {{#CUSTOMTITLE:How Do I Remove the Elements Path?}} | ||
− | The [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] displays information about the HTML elements of the document. | + | The [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] displays information about the HTML elements of the document for a position of the cursor. |
[[Image: CKEditor_elements_path.png|frame|center|The elements path of CKEditor]] | [[Image: CKEditor_elements_path.png|frame|center|The elements path of CKEditor]] | ||
− | If you want to get rid of it, use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removePlugins removePlugins]</code> | + | If you want to get rid of it, use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removePlugins removePlugins]</code> setting to remove the <code>[http://docs.cksource.com/ckeditor_api/symbols/src/plugins_elementspath_plugin.js.html elementspath]</code> plugin. |
<source lang="javascript"> | <source lang="javascript"> | ||
config.removePlugins = 'elementspath'; | config.removePlugins = 'elementspath'; | ||
</source> | </source> |
Latest revision as of 15:37, 24 February 2011
The elements path displays information about the HTML elements of the document for a position of the cursor.
If you want to get rid of it, use the removePlugins
setting to remove the elementspath
plugin.
config.removePlugins = 'elementspath';