fit-ui 2.11.13 → 2.11.14

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: 11, Patch: 13 } // Do NOT modify format - version numbers are programmatically changed when releasing new versions - MUST be on a separate line!
685
+ VersionInfo: { Major: 2, Minor: 11, Patch: 14 } // 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
 
@@ -30247,7 +30247,7 @@ Fit.Controls.TreeViewNode = function(displayTitle, nodeValue)
30247
30247
  if (Fit.Validation.IsSet(val) === true)
30248
30248
  {
30249
30249
  lblTitle.innerHTML = val;
30250
- nodeTitle = Fit.String.StripHtml(val); // Get rid of HTML formatting for return value
30250
+ nodeTitle = Fit.Dom.Text(lblTitle); // Get rid of HTML formatting for return value
30251
30251
 
30252
30252
  // Make sure any contained links do not receive focus when navigating TreeView with Tab/Shift+Tab
30253
30253
  Fit.Array.ForEach(lblTitle.getElementsByTagName("a"), function(link) { link.tabIndex = -1; });