Revert "Fix wrong device detection logic."
On actual iPad (2048x1536 native, 1024x768 browser), in
landscape view in Safari, mobile phone view is shown in
online instead of tablet.
This reverts commit f1e9ee72fe
.
Signed-off-by: Aron Budea <aron.budea@collabora.com>
Change-Id: I2cd4ba6cdcd616760c06c7db479e6d13be3d83b4
This commit is contained in:
parent
91c166d26a
commit
80a390f740
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ window.app = {
|
|||
return true;
|
||||
}
|
||||
|
||||
return L.Browser.mobile && (window.innerWidth < 768 || window.innerHeight < 768);
|
||||
return L.Browser.mobile && (screen.width < 768 || screen.height < 768);
|
||||
},
|
||||
// Mobile device with big screen size.
|
||||
isTablet: function() {
|
||||
|
|
Loading…
Reference in a new issue