Merge pull request #1251 from Guiswa/dev/guiswa/issue1226

Fix issue 1226: IE10 "Invalid argument" error in version 0.5 defining retina
gh-pages-master
Vladimir Agafonkin 12 years ago
commit 1677a7d40d

@ -21,7 +21,7 @@
mobile = typeof orientation !== undefined + '',
msTouch = (window.navigator && window.navigator.msPointerEnabled && window.navigator.msMaxTouchPoints),
retina = (('devicePixelRatio' in window && window.devicePixelRatio > 1) ||
('matchMedia' in window && window.matchMedia("") && window.matchMedia("(min-resolution:144dpi)").matches)),
('matchMedia' in window && window.matchMedia("(min-resolution:144dpi)") && window.matchMedia("(min-resolution:144dpi)").matches)),
doc = document.documentElement,
ie3d = ie && ('transition' in doc.style),

Loading…
Cancel
Save