Difference between revisions of "MediaWiki:Common.js"

From Utpalasia Wiki
Jump to navigation Jump to search
(change to test redirect)
(change to user-agent string detection again)
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
if(document.URL.search("mobile") == -1)
 
if(document.URL.search("mobile") == -1)
 
{
 
{
   var size = window.getComputedStyle(document.body,':after').getPropertyValue('content');
+
   var ua = navigator.userAgent;
  
   if (size.indexOf('smallscreen') !=-1)
+
   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");
 
     window.location.replace(document.URL + "?useformat=mobile");
    /*alert("Small screen detected.");*/
 
 
   }
 
   }
 
}
 
}

Latest revision as of 19:04, 7 April 2013

/* Any JavaScript here will be loaded for all users on every page load. */

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");
  }
}