mic_none

User:Aveaoz/AutoMobileRedirect.js Source: en.wikipedia.org/wiki/User:Aveaoz/AutoMobileRedirect.js

/*
  based on:
  - https://en.wikipedia.orghttps://demo.azizisearch.com/lite/wikipedia/page/User:%C3%9Ejarkur/NeverUseMobileVersion.js
  - https://stackoverflow.com/a/7995898/3286892
*/
if (window.location.href.match(/^https?:\/\/[^.]+\.m\./)) {
    var isMobile = navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(android)|(webOS)/i);
    var desktopUrl = $('#mw-mf-display-toggle').attr('href');
    if (!isMobile && desktopUrl) {
        window.location.href = desktopUrl;
    }
}