fit-ui 2.11.13 → 2.11.15
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 +2 -9
- 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: 11, Patch:
|
|
685
|
+
VersionInfo: { Major: 2, Minor: 11, Patch: 15 } // 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
|
|
|
@@ -5863,13 +5863,6 @@ Fit.Device =
|
|
|
5863
5863
|
{
|
|
5864
5864
|
Fit.Device.OptimizeForTouch = true;
|
|
5865
5865
|
}
|
|
5866
|
-
// Else, determine whether to optimize the user experience for touch on hybrid devices.
|
|
5867
|
-
// Only optimize for touch in this case if device's primary pointer is NOT high precision (mouse).
|
|
5868
|
-
// When a high precision pointer device is the primary pointer, then we prefer a desktop like experience.
|
|
5869
|
-
else if (Fit.Device.HasTouch === true && window.matchMedia && matchMedia("pointer:fine").matches === false)
|
|
5870
|
-
{
|
|
5871
|
-
Fit.Device.OptimizeForTouch = true;
|
|
5872
|
-
}
|
|
5873
5866
|
})();
|
|
5874
5867
|
|
|
5875
5868
|
/// <container name="Fit.Dom">
|
|
@@ -30247,7 +30240,7 @@ Fit.Controls.TreeViewNode = function(displayTitle, nodeValue)
|
|
|
30247
30240
|
if (Fit.Validation.IsSet(val) === true)
|
|
30248
30241
|
{
|
|
30249
30242
|
lblTitle.innerHTML = val;
|
|
30250
|
-
nodeTitle = Fit.
|
|
30243
|
+
nodeTitle = Fit.Dom.Text(lblTitle); // Get rid of HTML formatting for return value
|
|
30251
30244
|
|
|
30252
30245
|
// Make sure any contained links do not receive focus when navigating TreeView with Tab/Shift+Tab
|
|
30253
30246
|
Fit.Array.ForEach(lblTitle.getElementsByTagName("a"), function(link) { link.tabIndex = -1; });
|