fit-ui 2.10.9 → 2.10.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Fit.UI.js CHANGED
@@ -682,7 +682,7 @@ Fit._internal =
682
682
  {
683
683
  Core:
684
684
  {
685
- VersionInfo: { Major: 2, Minor: 10, Patch: 9 } // Do NOT modify format - version numbers are programmatically changed when releasing new versions - MUST be on a separate line!
685
+ VersionInfo: { Major: 2, Minor: 10, Patch: 10 } // Do NOT modify format - version numbers are programmatically changed when releasing new versions - MUST be on a separate line!
686
686
  }
687
687
  };
688
688
 
@@ -23849,6 +23849,10 @@ Fit.Controls.Input = function(ctlId)
23849
23849
  // WARNING: Control could potentially have been disposed at this point, but
23850
23850
  // we still need to finalize the configuration of CKEditor which is global.
23851
23851
 
23852
+ // Prevent CKEditor from automatically converting editable elements to inline editors.
23853
+ // https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR.html#cfg-disableAutoInline
23854
+ CKEDITOR.disableAutoInline = true;
23855
+
23852
23856
  if (Fit.Validation.IsSet(Fit._internal.Controls.Input.Editor.Skin) === true)
23853
23857
  {
23854
23858
  CKEDITOR.config.skin = Fit._internal.Controls.Input.Editor.Skin;