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
At the moment, we have Mapper#unbindElementsFromMarkerName() which unbinds all elements from given element name. This was the only case that we had, so it was easier just to unbind all elements than fire it for every item in a loop.
However, unbinding for a single item is more flexible and we need it for proper handling of more complex, custom marker converters.
The text was updated successfully, but these errors were encountered:
Other: Allowed for unbinding single elements from a marker name in `Mapper`. Closes #1758.
BREAKING CHANGE: `Mapper#unbindElementsFromMarkerName( markerName )` was replaced by `Mapper#unbindElementFromMarkerName( element, markerName )`.
mlewand
transferred this issue from ckeditor/ckeditor5-engine
Oct 9, 2019
At the moment, we have
Mapper#unbindElementsFromMarkerName()
which unbinds all elements from given element name. This was the only case that we had, so it was easier just to unbind all elements than fire it for every item in a loop.However, unbinding for a single item is more flexible and we need it for proper handling of more complex, custom marker converters.
The text was updated successfully, but these errors were encountered: