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