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