I would like to modify the horizontalrule Plugin and add some Inline Style into hr.
I tried to add black background (in plugin.js) to <hr /> but its not working:
canUndo: false, // The undo snapshot will be handled by 'insertElement'.
exec: function( editor ) {
var hr = editor.document.createElement( 'hr' );
hr.style.background = "#000";
editor.insertElement( hr );
},
Can anyone help me out with this?
still not working
Tried to go through http://docs.ckeditor.com/#!/guide/plugin_sdk_styles-section-inline-editor
but i need inline - styling for the <hr> Element