Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(added some OSs) |
(switch to width for testing) |
||
| Line 4: | Line 4: | ||
{ | { | ||
var ua = navigator.userAgent; | var ua = navigator.userAgent; | ||
| − | if( ua.match(/Android/i) | + | /*if( ua.match(/Android/i) |
|| ua.match(/webOS/i) | || ua.match(/webOS/i) | ||
|| ua.match(/iPhone/i) | || ua.match(/iPhone/i) | ||
| Line 11: | Line 11: | ||
|| ua.match(/Windows Phone/i) | || ua.match(/Windows Phone/i) | ||
|| ua.match(/Bada/i) | || ua.match(/Bada/i) | ||
| − | || ua.match(/Symbian/i)) | + | || ua.match(/Symbian/i))*/ |
| + | if(document.documentElement.clientWidth <= 1000) | ||
{ | { | ||
window.location.replace(document.URL + "?useformat=mobile"); | window.location.replace(document.URL + "?useformat=mobile"); | ||
} | } | ||
} | } | ||
Revision as of 19:37, 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");
}
}