16 lines
314 B
XML
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
|
|
};
|