通用评论

utils.js 283B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. /**
  6. * 575: 为了和media query中的判断保持一致
  7. */
  8. var isMobile = exports.isMobile = typeof window.orientation === "number" && document.body.offsetWidth < 575;
  9. //# sourceMappingURL=utils.js.map