cosey 0.3.0 → 0.3.1
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.
|
@@ -213,7 +213,9 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
213
213
|
});
|
|
214
214
|
const footerWrapper2 = ref(null);
|
|
215
215
|
const scrollHander = event => {
|
|
216
|
-
footerWrapper2.value
|
|
216
|
+
if (footerWrapper2.value) {
|
|
217
|
+
footerWrapper2.value.scrollLeft = event.target.scrollLeft;
|
|
218
|
+
}
|
|
217
219
|
};
|
|
218
220
|
const bindScrollEvent = () => {
|
|
219
221
|
document.querySelector(`.${tableId} .el-scrollbar__wrap`)?.addEventListener("scroll", scrollHander);
|