Difference between revisions of "MediaWiki:Common.js"
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
		
		
		
		
		
		
	
|  (slight change to how width is retrieved) |  (changed to document.body) | ||
| 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. | + | if(document.body.clientWidth <= 787 && document.URL.search("mobile") != -1) | 
| { | { | ||
|    window.location.replace(document.URL + "&mobileaction=toggle_view_mobile"); |    window.location.replace(document.URL + "&mobileaction=toggle_view_mobile"); | ||
| } | } | ||
Revision as of 22:04, 29 March 2013
/* Any JavaScript here will be loaded for all users on every page load. */
if(document.body.clientWidth <= 787 && document.URL.search("mobile") != -1)
{
  window.location.replace(document.URL + "&mobileaction=toggle_view_mobile");
}

