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