Files
2023-02-12 19:04:01 +08:00

9 lines
191 B
XML

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