@ckeditor+ckeditor5-ui+43.0.0.patch 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. diff --git a/node_modules/@ckeditor/ckeditor5-ui/src/editorui/poweredby.js b/node_modules/@ckeditor/ckeditor5-ui/src/editorui/poweredby.js
  2. index 191aba1..324f6d2 100644
  3. --- a/node_modules/@ckeditor/ckeditor5-ui/src/editorui/poweredby.js
  4. +++ b/node_modules/@ckeditor/ckeditor5-ui/src/editorui/poweredby.js
  5. @@ -112,12 +112,9 @@ export default class PoweredBy extends /* #__PURE__ */ DomEmitterMixin() {
  6. if (!this._balloonView) {
  7. this._createBalloonView();
  8. }
  9. - this._balloonView.pin(attachOptions);
  10. + // this._balloonView.pin(attachOptions);
  11. }
  12. }
  13. - /**
  14. - * Hides the "powered by" balloon if already visible.
  15. - */
  16. _hideBalloon() {
  17. if (this._balloonView) {
  18. this._balloonView.unpin();
  19. diff --git a/node_modules/@ckeditor/ckeditor5-ui/src/icon/iconview.js b/node_modules/@ckeditor/ckeditor5-ui/src/icon/iconview.js
  20. index dd6d2ed..7af8e61 100644
  21. --- a/node_modules/@ckeditor/ckeditor5-ui/src/icon/iconview.js
  22. +++ b/node_modules/@ckeditor/ckeditor5-ui/src/icon/iconview.js
  23. @@ -42,17 +42,14 @@ class IconView extends View {
  24. }
  25. });
  26. }
  27. - /**
  28. - * @inheritDoc
  29. - */
  30. render() {
  31. super.render();
  32. - this._updateXMLContent();
  33. + // this._updateXMLContent();
  34. this._colorFillPaths();
  35. // This is a hack for lack of innerHTML binding.
  36. // See: https://github.com/ckeditor/ckeditor5-ui/issues/99.
  37. this.on('change:content', () => {
  38. - this._updateXMLContent();
  39. + // this._updateXMLContent();
  40. this._colorFillPaths();
  41. });
  42. this.on('change:fillColor', () => {