Skip to content

Commit b064a42

Browse files
author
Seyd
committed
* fix device orientation
1 parent 99bf2de commit b064a42

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

JS.Responsive.js

+16-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license JS.Responsive v2.3
2+
* @license JS.Responsive v2.3.3
33
* (c) 2015 WEZEO http://wezeo.com
44
* License: MIT
55
*
@@ -1425,20 +1425,22 @@
14251425
}
14261426
else {
14271427
var screenOrientation = screen.orientation || screen.mozOrientation || screen.msOrientation;
1428-
if (typeof screenOrientation == 'string') {
1429-
// is commented because zero is default
1430-
//if (screenOrientation == 'portrait-primary')
1431-
//orientation = 0;
1432-
if (screenOrientation == 'landscape-primary')
1433-
orientation = 90;
1434-
if (screenOrientation == 'portrait-secondary')
1435-
orientation = 180;
1436-
if (screenOrientation == 'landscape-secondary')
1437-
orientation = 270;
1428+
if (screenOrientation) {
1429+
if (typeof screenOrientation == 'string') {
1430+
// is commented because zero is default
1431+
//if (screenOrientation == 'portrait-primary')
1432+
//orientation = 0;
1433+
if (screenOrientation == 'landscape-primary')
1434+
orientation = 90;
1435+
if (screenOrientation == 'portrait-secondary')
1436+
orientation = 180;
1437+
if (screenOrientation == 'landscape-secondary')
1438+
orientation = 270;
1439+
}
1440+
else if (screenOrientation.angle) {
1441+
orientation = screenOrientation.angle;
1442+
}
14381443
}
1439-
else if (screenOrientation.angle) {
1440-
orientation = screenOrientation.angle;
1441-
}
14421444
}
14431445
if (orientation==-90)
14441446
orientation = 270;

0 commit comments

Comments
 (0)