Skip to content

Commit

Permalink
#10337: removeformat should remove <s>.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Apr 17, 2013
1 parent df562b6 commit b74d293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ CKEditor 4 Changelog
* [#10330](http://dev.ckeditor.com/ticket/10330): [Webkit] Filling char is not removed on `keydown` in specific cases.
* [#10285](http://dev.ckeditor.com/ticket/10285): Fixed: styled text pasted from MS Word causes infinite loop.
* [#10131](http://dev.ckeditor.com/ticket/10131): Fixed: undoManager#update does not refresh command state.
* [#10337](http://dev.ckeditor.com/ticket/10337): Fixed: Unable to remove `<s>` using removeformat.

## CKEditor 4.1

Expand Down
2 changes: 1 addition & 1 deletion plugins/removeformat/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ CKEDITOR.editor.prototype.addRemoveFormatFilter = function( func ) {
* @cfg
* @member CKEDITOR.config
*/
CKEDITOR.config.removeFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var';
CKEDITOR.config.removeFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,s,samp,small,span,strike,strong,sub,sup,tt,u,var';

/**
* A comma separated list of elements attributes to be removed when executing
Expand Down

0 comments on commit b74d293

Please sign in to comment.