ua.js 182 Bytes
Newer Older
葛齐林's avatar
葛齐林 committed
1 2 3 4 5 6 7 8 9
/* eslint-disable */

var parser = new UAParser()

var uaResult = parser.getResult()

if (uaResult.device.type === 'mobile') {
  window.location.href = './is-mobile.html'
}