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.
- package/build/components/common.js +2 -3
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/common.ts +3 -3
|
@@ -53,9 +53,8 @@ var configureParent = function (component, parent) {
|
|
|
53
53
|
};
|
|
54
54
|
exports.configureParent = configureParent;
|
|
55
55
|
var setClassNames = function (el, className) {
|
|
56
|
-
|
|
57
|
-
|
|
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++) {
|