ipadspecific.js 349 Bytes
Newer Older
Patrick's avatar
Patrick committed
1
2
3
4
5
6
7
8
9
window.onload = function(){

    if (checkagent() == true && is_touch_device() == true && checkIpad() == true && framework.isMobile() == false ) {

        changeColor(true);
    };
// document.getElementById("redtext").innerHTML = "checkagent: " + checkagent() + " istouchdevice: " + is_touch_device() + " isipad:" + checkIpad();
// checkagent();
}