fit-ui 3.2.4 → 3.2.5
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 +5 -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: 3, Minor: 2, Patch:
|
|
685
|
+
VersionInfo: { Major: 3, Minor: 2, Patch: 5 } // 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
|
|
|
@@ -18371,6 +18371,10 @@ Fit.Controls.DropDown = function(ctlId)
|
|
|
18371
18371
|
{
|
|
18372
18372
|
// This will destroy control - it will no longer work!
|
|
18373
18373
|
|
|
18374
|
+
// Make sure globally mounted dropdown menu is returned to control's container in case
|
|
18375
|
+
// control is disposed while open - otherwise it will not be removed from the document.
|
|
18376
|
+
resetDropDownPosition();
|
|
18377
|
+
|
|
18374
18378
|
if (picker !== null)
|
|
18375
18379
|
picker.Destroy();
|
|
18376
18380
|
|