{"version":3,"sources":["webpack:///./node_modules/tiny-slider/src/helpers/mediaquerySupport.js"],"names":["mediaquerySupport","window","matchMedia","msMatchMedia","position","doc","document","body","docOverflow","div","createElement","style","rule","type","className","appendChild","styleSheet","cssText","createTextNode","getComputedStyle","currentStyle","fake","remove"],"mappings":"0FAAA,8DAIO,SAASA,IACd,GAAIC,OAAOC,YAAcD,OAAOE,aAC9B,OAAO,EAGT,IAMIC,EANAC,EAAMC,SACNC,EAAO,cACPC,EAAc,YAAYD,GAC1BE,EAAMJ,EAAIK,cAAc,OACxBC,EAAQN,EAAIK,cAAc,SAC1BE,EAAO,kEAmBX,OAhBAD,EAAME,KAAO,WACbJ,EAAIK,UAAY,cAEhBP,EAAKQ,YAAYJ,GACjBJ,EAAKQ,YAAYN,GAEbE,EAAMK,WACRL,EAAMK,WAAWC,QAAUL,EAE3BD,EAAMI,YAAYV,EAAIa,eAAeN,IAGvCR,EAAWH,OAAOkB,iBAAmBlB,OAAOkB,iBAAiBV,GAAKL,SAAWK,EAAIW,aAAuB,SAExGb,EAAKc,KAAO,YAAcd,EAAMC,GAAeC,EAAIa,SAE/B,aAAblB","file":"mediaquerySupport.7643d57a.js","sourcesContent":["import { getBody } from './getBody.js';\nimport { setFakeBody } from './setFakeBody.js';\nimport { resetFakeBody } from './resetFakeBody.js';\n\nexport function mediaquerySupport () {\n if (window.matchMedia || window.msMatchMedia) {\n return true;\n }\n \n var doc = document,\n body = getBody(),\n docOverflow = setFakeBody(body),\n div = doc.createElement('div'),\n style = doc.createElement('style'),\n rule = '@media all and (min-width:1px){.tns-mq-test{position:absolute}}',\n position;\n\n style.type = 'text/css';\n div.className = 'tns-mq-test';\n\n body.appendChild(style);\n body.appendChild(div);\n\n if (style.styleSheet) {\n style.styleSheet.cssText = rule;\n } else {\n style.appendChild(doc.createTextNode(rule));\n }\n\n position = window.getComputedStyle ? window.getComputedStyle(div).position : div.currentStyle['position'];\n\n body.fake ? resetFakeBody(body, docOverflow) : div.remove();\n\n return position === \"absolute\";\n}\n"],"sourceRoot":""}