// This is where you can place your Javascript code
var url = 'http://site.ru';
var skin = 'android';
var no_internet = 'You need an active Internet connection!';
function checkInternet() {
var XHR = window.XDomainRequest || window.XMLHttpRequest;
var xhr = new XHR();
xhr.open('GET', url + 'path/mobile/ready.php', true);
// onreadystatechange
xhr.onload = function() {
window.location.replace(url + '/?mobile=true&native='+skin);
}
xhr.onerror = function() {
alert(no_internet);
}
xhr.send();
}
checkInternet();
[my]
debug = "false";
gzip = "true";
gzip_debug = "0";
gzip_level = "1";