1,970
edits
No edit summary Tags: Mobile edit Mobile web edit |
No edit summary |
||
Line 13: | Line 13: | ||
} | } | ||
. | (function () { | ||
if(document.URL.search("mobile") == -1) | |||
{ | |||
var ua = navigator.userAgent; | |||
if(ua.match(/Android/i)) | |||
{ | |||
if(ua.match(/Mobile/i)) | |||
{ | |||
window.location.replace(document.URL + "?useformat=mobile"); | |||
} | |||
} | |||
else if((/webos|iphone|ipod|blackberry|windows phone|bada/i).test(ua)) | |||
{ | |||
window.location.replace(document.URL + "?useformat=mobile"); | |||
} | |||
} | } | ||
}()); |