mirror of
https://github.com/apache/cordova-plugin-screen-orientation.git
synced 2026-05-31 00:00:04 +08:00
[windows] Fix failing tests, added Promise if it is not defined 8.1
This commit is contained in:
@@ -22,6 +22,10 @@
|
||||
var DisplayInfo = Windows.Graphics.Display.DisplayInformation;
|
||||
var Orientations = Windows.Graphics.Display.DisplayOrientations;
|
||||
|
||||
if (!window.Promise) {
|
||||
window.Promise = WinJS.Promise;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
screenOrientation: function (win, fail, args) {
|
||||
//console.log("screenOrientation proxy called with " + args);
|
||||
|
||||
@@ -98,7 +98,6 @@ var onChangeListener = null;
|
||||
|
||||
Object.defineProperty(screen.orientation, 'onchange', {
|
||||
set: function(listener) {
|
||||
console.log("setting onchange to : " + listener);
|
||||
|
||||
if (onChangeListener != null) {
|
||||
screen.orientation.removeEventListener('change', onChangeListener);
|
||||
@@ -144,8 +143,11 @@ function setOrientationProperties() {
|
||||
case -90:
|
||||
screen.orientation.type = 'landscape-secondary';
|
||||
break;
|
||||
default:
|
||||
screen.orientation.type = 'portrait-primary';
|
||||
break;
|
||||
}
|
||||
screen.orientation.angle = window.orientation;
|
||||
screen.orientation.angle = window.orientation || 0;
|
||||
|
||||
}
|
||||
window.addEventListener("orientationchange", orientationchange, true);
|
||||
|
||||
Reference in New Issue
Block a user