zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

9 lines
203 B
XML

function getPopupStyles(zIndex, customStyle) {
var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
return zIndexStyle + customStyle;
}
module.exports = {
getPopupStyles: getPopupStyles,
};