Files
2023-08-18 17:32:18 +08:00

16 lines
314 B
XML

function getPopupStyles(zIndex) {
var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
return zIndexStyle;
}
function onContentTouchMove (e) {
if (e.target.dataset.prevention) {
return false;
};
}
module.exports = {
getPopupStyles: getPopupStyles,
onContentTouchMove: onContentTouchMove
};