add js device_type variable (mobile-style.js) and make smartphone-spoiler.js use it

This commit is contained in:
Marcin Łabanowski 2013-01-02 06:05:44 +01:00
parent 4972ebdc7e
commit 839854ffc4
2 changed files with 10 additions and 9 deletions

View file

@ -1,8 +1,8 @@
onready(function(){
if(navigator.userAgent.match(/iPhone|iPod|iPad|Android|Opera Mini|Blackberry|PlayBook|Windows Phone|Tablet PC|Windows CE|IEMobile/i)) {
$('html').addClass("mobile-style");
}
else {
$('html').addClass("desktop-style");
}
})
if(navigator.userAgent.match(/iPhone|iPod|iPad|Android|Opera Mini|Blackberry|PlayBook|Windows Phone|Tablet PC|Windows CE|IEMobile/i)) {
$('html').addClass("mobile-style");
device_type = "mobile";
}
else {
$('html').addClass("desktop-style");
device_type = "desktop";
}