You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, standalone CKEDITOR.filter instance cannot be removed during destroying editor because it doesn't contain a reference to the editor itself. We should add an optional way to bind filter and editor. Because of the polymorphic constructor, this request is pretty tricky, although we could move rules to the second constructor position as an optional parameter:
new CKEDITOR.filter( editorOrRules, [rules] )
The text was updated successfully, but these errors were encountered:
Type of report
Feature request
Provide description of the new feature
Currently, standalone CKEDITOR.filter instance cannot be removed during destroying editor because it doesn't contain a reference to the editor itself. We should add an optional way to bind filter and editor. Because of the polymorphic constructor, this request is pretty tricky, although we could move
rules
to the second constructor position as an optional parameter:new CKEDITOR.filter( editorOrRules, [rules] )
The text was updated successfully, but these errors were encountered: