fit-ui 2.18.0 → 2.18.1
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 +6 -1
- package/dist/Fit.UI.min.js +1 -1
- package/package.json +1 -1
package/dist/Fit.UI.js
CHANGED
|
@@ -682,7 +682,7 @@ Fit._internal =
|
|
|
682
682
|
{
|
|
683
683
|
Core:
|
|
684
684
|
{
|
|
685
|
-
VersionInfo: { Major: 2, Minor: 18, Patch:
|
|
685
|
+
VersionInfo: { Major: 2, Minor: 18, Patch: 1 } // 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
|
|
|
@@ -26419,6 +26419,11 @@ Fit.Controls.Input = function(ctlId)
|
|
|
26419
26419
|
// so the user will not see the chrome (borders) of the editor increase its height.
|
|
26420
26420
|
setTimeout(function()
|
|
26421
26421
|
{
|
|
26422
|
+
if (me === null) // Might have been disposed while loading, e.g as part of "warm up" to load resources
|
|
26423
|
+
{
|
|
26424
|
+
return;
|
|
26425
|
+
}
|
|
26426
|
+
|
|
26422
26427
|
designEditorDom.OuterContainer.style.visibility = "visible";
|
|
26423
26428
|
|
|
26424
26429
|
// Because editor is hidden while initializing, startupFocus
|