Difference between revisions of "MediaWiki:Common.js"
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
		
		
		
		
		
		
	
|  (switch to width for testing) |  (removing code for test) | ||
| Line 1: | Line 1: | ||
| /* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
| − | if(document.URL.search("mobile") == -1) | + | /*if(document.URL.search("mobile") == -1) | 
| { | { | ||
|    var ua = navigator.userAgent; |    var ua = navigator.userAgent; | ||
| Line 17: | Line 17: | ||
|    } |    } | ||
| } | } | ||
| + | */ | ||
Revision as of 20:53, 6 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)
   || ua.match(/webOS/i)
   || ua.match(/iPhone/i)
   || ua.match(/iPod/i)
   || ua.match(/BlackBerry/i)
   || ua.match(/Windows Phone/i)
   || ua.match(/Bada/i)
   || ua.match(/Symbian/i))*/
  if(document.documentElement.clientWidth <= 1000)
  {
    window.location.replace(document.URL + "?useformat=mobile");
  }
}
*/

