Последняя активность 1 month ago

Версия 9fbae347d005b0d91d0922945c0d9af6af5b7185

disable_js_on_mobile.js Исходник
1function isMobile() {
2return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
3}
4
5if (!isMobile()) {
6//place script you don't want to run on mobile here
7
8}
9