publ-echo-test 0.0.330 → 0.0.331
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.
@@ -157,6 +157,9 @@ var Resizable = function (_a) {
|
|
157
157
|
if (contentsWrapper) {
|
158
158
|
var gridWrapperInnerH = contentsWrapper.clientHeight;
|
159
159
|
var oneCompositionH = oneComposition.scrollHeight;
|
160
|
+
console.log("scrollHeight", oneCompositionH);
|
161
|
+
console.log("clientHeight", oneComposition.clientHeight);
|
162
|
+
console.log("gap", oneCompositionH - oneComposition.clientHeight);
|
160
163
|
var compositionBGwrapperPaddingT = Number(oneComposition.getAttribute("data-wrapper-paddingt"));
|
161
164
|
var compositionBGwrapperPaddingB = Number(oneComposition.getAttribute("data-wrapper-paddingb"));
|
162
165
|
var compositionBGwrapperPaddingL = Number(oneComposition.getAttribute("data-wrapper-paddingl"));
|
@@ -184,8 +187,6 @@ var Resizable = function (_a) {
|
|
184
187
|
paddingTB +
|
185
188
|
insetTop +
|
186
189
|
insetBottom;
|
187
|
-
console.log("listMinHeight", listMinHeight);
|
188
|
-
console.log("gridWrapperTotalH", gridWrapperTotalH);
|
189
190
|
if (listMinHeight > gridWrapperTotalH) {
|
190
191
|
minHeight.current = listMinHeight;
|
191
192
|
}
|