Difference between revisions of "MediaWiki:Common.js"

From Utpalasia Wiki
Jump to navigation Jump to search
m (removed alert box)
(added Android workaround for redirect)
Line 3: Line 3:
 
if(document.documentElement.clientWidth <= 787 && document.URL.search("mobile") == -1)
 
if(document.documentElement.clientWidth <= 787 && document.URL.search("mobile") == -1)
 
{
 
{
   window.location.replace(document.URL + "?useformat=mobile");
+
   if(navigator.userAgent.indexOf("Android") != -1)
 +
  {
 +
    document.location(document.URL + "?useformat=mobile");
 +
  }
 +
  else
 +
  {
 +
    window.location.replace(document.URL + "?useformat=mobile");
 +
  }
 
}
 
}

Revision as of 20:17, 4 April 2013

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

if(document.documentElement.clientWidth <= 787 && document.URL.search("mobile") == -1)
{
  if(navigator.userAgent.indexOf("Android") != -1)
  {
    document.location(document.URL + "?useformat=mobile");
  }
  else
  {
    window.location.replace(document.URL + "?useformat=mobile");
  }
}