gd-bs 6.6.37 → 6.6.38

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.
@@ -53,9 +53,8 @@ var configureParent = function (component, parent) {
53
53
  };
54
54
  exports.configureParent = configureParent;
55
55
  var setClassNames = function (el, className) {
56
- if (className === void 0) { className = ""; }
57
- // Ensure the element exists
58
- if (el) {
56
+ // Ensure the element and class name exists exists
57
+ if (el && className) {
59
58
  // Set the class names
60
59
  var classNames = className.split(' ');
61
60
  for (var i = 0; i < classNames.length; i++) {