jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/_util/event.sjs

10 lines
230 B
Plaintext
Raw Normal View History

2024-11-15 03:51:28 +00:00
function disableScrollEvent(event) {
event.preventDefault();
}
function enableScrollEvent(event) {
event.stopPropagation();
}
export default {
disableScrollEvent: disableScrollEvent,
enableScrollEvent: enableScrollEvent
};