fit-ui 2.13.7 → 2.13.8
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 +3 -3
- 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: 13, Patch:
|
|
685
|
+
VersionInfo: { Major: 2, Minor: 13, Patch: 8 } // 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
|
|
|
@@ -14907,11 +14907,11 @@ Fit.Controls.DatePicker = function(ctlId)
|
|
|
14907
14907
|
{
|
|
14908
14908
|
initializeOnDemand(function()
|
|
14909
14909
|
{
|
|
14910
|
-
if (Fit.Dom.
|
|
14910
|
+
if (Fit.Dom.IsVisible(me.GetDomElement()) === true)
|
|
14911
14911
|
{
|
|
14912
14912
|
var focused = Fit.Dom.GetFocused();
|
|
14913
14913
|
|
|
14914
|
-
datepicker.datepicker("show"); // Fails if not
|
|
14914
|
+
datepicker.datepicker("show"); // Fails if not visible (part of render tree)
|
|
14915
14915
|
|
|
14916
14916
|
// Allow light dismissable panels/callouts to prevent close/dismiss
|
|
14917
14917
|
// when interacting with calendar widget hosted outside of panels/callouts,
|