isobit-ui 0.2.16 → 0.2.18
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/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.17
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1160,13 +1160,15 @@ var script$j = {
|
|
|
1160
1160
|
|
|
1161
1161
|
el = el.children[1].children[0];
|
|
1162
1162
|
el.style.height = h + 'px';
|
|
1163
|
+
console.log("============");
|
|
1164
|
+
console.log(el.children);
|
|
1163
1165
|
var el2; //,style2;
|
|
1164
1166
|
|
|
1165
1167
|
if (el.children.forEach) {
|
|
1166
|
-
el.children.forEach(function (ee) {
|
|
1168
|
+
el.children.forEach(function (ee, i) {
|
|
1167
1169
|
if (!el2) {
|
|
1168
1170
|
//style2 = window.getComputedStyle(ee);
|
|
1169
|
-
if (!ee.classList.contains('v-scrollable') && !ee.classList.contains('v-resize')) {
|
|
1171
|
+
if (i == el.children.length - 1 && ee.tagName == 'CENTER' || !ee.classList.contains('v-scrollable') && !ee.classList.contains('v-resize')) {
|
|
1170
1172
|
h -= ee.offsetHeight + 2;
|
|
1171
1173
|
} else {
|
|
1172
1174
|
el2 = ee;
|