2012-12-22 19:18:35 +00:00
|
|
|
onready(function(){
|
2012-12-29 15:31:23 +00:00
|
|
|
if(navigator.userAgent.match(/iPhone|iPod|iPad|Android|Opera Mini|Blackberry|PlayBook|Windows Phone|Tablet PC|Windows CE|IEMobile/i)) {
|
2012-12-22 19:18:35 +00:00
|
|
|
$('html').addClass("mobile-style");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('html').addClass("desktop-style");
|
|
|
|
}
|
|
|
|
})
|