ua.js 173 B

123456789
  1. /* eslint-disable */
  2. var parser = new UAParser()
  3. var uaResult = parser.getResult()
  4. if (uaResult.device.type === 'mobile') {
  5. window.location.href = './is-mobile.html'
  6. }