File tree 2 files changed +18
-16
lines changed
2 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * @license JS.Responsive v2.3
2
+ * @license JS.Responsive v2.3.3
3
3
* (c) 2015 WEZEO http://wezeo.com
4
4
* License: MIT
5
5
*
1425
1425
}
1426
1426
else {
1427
1427
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
+ }
1438
1443
}
1439
- else if ( screenOrientation . angle ) {
1440
- orientation = screenOrientation . angle ;
1441
- }
1442
1444
}
1443
1445
if ( orientation == - 90 )
1444
1446
orientation = 270 ;
You can’t perform that action at this time.
0 commit comments