Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove underscore from _updateEditorData method name and make it public. #13784

Merged
merged 3 commits into from
Apr 3, 2023

Conversation

mremiszewski
Copy link
Contributor

Suggested merge commit message (convention)

Feature (source-editing): Remove the underscore from _updateEditorData method name and make it public. Closes #11008.


Additional information

For example – encountered issues, assumptions you had to make, other affected tickets, etc.

@@ -9,7 +9,7 @@

/* global console */

import { type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';
import { type ContextPluginDependencies, type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
import { type ContextPluginDependencies, type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';
import { type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';

@@ -38,7 +38,7 @@ export default class SourceEditing extends Plugin {
/**
* @inheritDoc
*/
public static get requires() {
public static get requires(): ContextPluginDependencies {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public static get requires(): ContextPluginDependencies {
public static get requires() {

@arkflpc arkflpc merged commit acc02f4 into master Apr 3, 2023
@arkflpc arkflpc deleted the ck/11008-allow-saving-data-in-source-mode branch April 3, 2023 07:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Source editing doesn't save unless going back to WYSIWYG
2 participants